HomeTableViewCell.h 568 B

123456789101112131415161718192021222324252627
  1. //
  2. // HomeTableViewCell.h
  3. // TheoryNetwork
  4. //
  5. // Created by tederen on 2019/9/26.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^TouchBlock)(void);
  11. @class DocumentModel;
  12. @interface HomeTableViewCell : UITableViewCell
  13. @property (weak, nonatomic) IBOutlet TDButton *deleteButton;
  14. @property (nonatomic, copy) TouchBlock buttonBlock;
  15. + (instancetype)cellWithTableView:(UITableView *)tableView AndIndex:(NSInteger)index;
  16. - (void)loadCurrentItemModel:(Item *)model;
  17. @end
  18. NS_ASSUME_NONNULL_END