1234567891011121314151617181920212223 |
- //
- // recordFileCell.h
- // 双子星云手机
- //
- // Created by xd h on 2025/3/31.
- //
- #import <UIKit/UIKit.h>
- #import "recordFileModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface recordFileCell : UITableViewCell
- @property(nonatomic,strong) recordFileModel *curRecordFileModel;
- //index 1 编辑 2 删除 10 播放 11 后退 12 前进
- @property (nonatomic,copy) void (^didClickRecordButFun)(NSInteger index);
- @property (nonatomic,copy) void (^didClickSwitch)(BOOL SwitchOn);
- @end
- NS_ASSUME_NONNULL_END
|