PlayHistoryViewController.h 530 B

1234567891011121314151617181920212223
  1. //
  2. // PlayHistoryViewController.h
  3. // AICity
  4. //
  5. // Created by 刘伟伟 on 2023/7/13.
  6. // Copyright © 2023 wei.z. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface PlayHistoryViewController : UIViewController
  11. @end
  12. @interface HistoryCell : UITableViewCell
  13. @property(nonatomic,assign)BOOL isEdit;
  14. + (instancetype)cellWithTableView:(UITableView *)tableView;
  15. @property (nonatomic, strong) void(^tapBlock)(int index);
  16. @property (nonatomic, strong) NSDictionary *dic;
  17. @end
  18. NS_ASSUME_NONNULL_END