12345678910111213141516171819202122232425262728 |
- //
- // MyStyleVideoCell.h
- // KulexiuForTeacher
- //
- // Created by 王智 on 2022/4/11.
- //
- #import <UIKit/UIKit.h>
- typedef NS_ENUM(NSInteger, STYLEVIDEO) {
- STYLEVIDEO_CHOOSEFILE, // 选择文件
- STYLEVIDEO_CHOOSEIMAGE, // 选择封面
- STYLEVIDEO_PLAY, // 播放
- STYLEVIDEO_DELETE, // 删除
- };
- typedef void(^StyleVideoCellAction)(STYLEVIDEO type, UIView * _Nullable containerView);
- NS_ASSUME_NONNULL_BEGIN
- @interface MyStyleVideoCell : UITableViewCell
- - (void)configWithSource:(NSMutableArray *)videoArray;
- - (void)opreationCallback:(StyleVideoCellAction)callback;
- @end
- NS_ASSUME_NONNULL_END
|