recordingView.h 311 B

12345678910111213141516171819
  1. //
  2. // recordingView.h
  3. // 双子星云手机
  4. //
  5. // Created by xd h on 2025/3/28.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface recordingView : UIView
  10. @property (nonatomic,copy) void (^didClickRecordEndFun)(void);
  11. - (void)beginRecordFunWith:(NSInteger)curIndex;
  12. @end
  13. NS_ASSUME_NONNULL_END