123456789101112131415161718192021222324252627 |
- //
- // HomeTableViewCell.h
- // TheoryNetwork
- //
- // Created by tederen on 2019/9/26.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^TouchBlock)(void);
- @class DocumentModel;
- @interface HomeTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet TDButton *deleteButton;
- @property (nonatomic, copy) TouchBlock buttonBlock;
- + (instancetype)cellWithTableView:(UITableView *)tableView AndIndex:(NSInteger)index;
- - (void)loadCurrentItemModel:(Item *)model;
- @end
- NS_ASSUME_NONNULL_END
|