| 123456789101112131415161718192021222324 |
- //
- // 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 FavViewController : UIViewController
- @end
- @interface FavCell : UITableViewCell
- @property(nonatomic,strong)NSDictionary *dic;
- @property(nonatomic,assign)BOOL isEdit;
- @property(nonatomic,assign)int isSel;
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic, strong) void(^tapBlock)(int index);
- @end
- NS_ASSUME_NONNULL_END
|