// // PlayHistoryViewController.h // AICity // // Created by 刘伟伟 on 2023/7/13. // Copyright © 2023 wei.z. All rights reserved. // #import 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