12345678910111213141516171819 |
- //
- // recordingView.h
- // 双子星云手机
- //
- // Created by xd h on 2025/3/28.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface recordingView : UIView
- @property (nonatomic,copy) void (^didClickRecordEndFun)(void);
- - (void)beginRecordFunWith:(NSInteger)curIndex;
- @end
- NS_ASSUME_NONNULL_END
|