recordFileCell.h 503 B

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