| 1234567891011121314151617181920212223 |
- //
- // PlayHistoryViewController.h
- // AICity
- //
- // Created by 刘伟伟 on 2023/7/13.
- // Copyright © 2023 wei.z. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PlayHistoryViewController : UIViewController
- @end
- @interface HistoryCell : UITableViewCell
- @property(nonatomic,assign)BOOL isEdit;
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic, strong) void(^tapBlock)(int index);
- @property (nonatomic, strong) NSDictionary *dic;
- @end
- NS_ASSUME_NONNULL_END
|