CSFileCell.h 789 B

123456789101112131415161718192021222324252627
  1. //
  2. // CSFileCell.h
  3. // zhuxun
  4. //
  5. // Created by winsoft on 17/6/16.
  6. //
  7. //
  8. #import "BaseTableViewCell.h"
  9. #import "CSFileExtensionViewForCell.h"
  10. #import "CSFileFrameModel.h"
  11. #define CSFileCellIdentifier @"CSFileCellIdentifier"
  12. typedef void(^ExtensionSwitchBlock)(CSFileFrameModel *csFileFrameModel);
  13. @interface CSFileCell : BaseTableViewCell
  14. //@property (nonatomic , weak, readonly) UITableView *mainTableView;
  15. @property (nonatomic , strong) ExtensionSwitchBlock extensionSwitchBlock;
  16. @property (nonatomic , strong) ExtensionOpBlock extensionOpBlock;
  17. @property (nonatomic , strong) CSFileFrameModel *csFileFrameModel;
  18. + (CSFileCell *)fileCellWithTableView:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath identifier:(NSString *)identifier opItems:(NSArray *)opItems;
  19. @end