| 123456789101112131415161718192021222324252627 |
- //
- // CSFileCell.h
- // zhuxun
- //
- // Created by winsoft on 17/6/16.
- //
- //
- #import "BaseTableViewCell.h"
- #import "CSFileExtensionViewForCell.h"
- #import "CSFileFrameModel.h"
- #define CSFileCellIdentifier @"CSFileCellIdentifier"
- typedef void(^ExtensionSwitchBlock)(CSFileFrameModel *csFileFrameModel);
- @interface CSFileCell : BaseTableViewCell
- //@property (nonatomic , weak, readonly) UITableView *mainTableView;
- @property (nonatomic , strong) ExtensionSwitchBlock extensionSwitchBlock;
- @property (nonatomic , strong) ExtensionOpBlock extensionOpBlock;
- @property (nonatomic , strong) CSFileFrameModel *csFileFrameModel;
- + (CSFileCell *)fileCellWithTableView:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath identifier:(NSString *)identifier opItems:(NSArray *)opItems;
- @end
|