12345678910111213141516171819202122 |
- #import "TDTableViewCell.h"
- typedef void(^AddFileTouchBlock)(void);
- NS_ASSUME_NONNULL_BEGIN
- @interface AddFileTableViewCell : TDTableViewCell
- @property (nonatomic, copy) AddFileTouchBlock backBlock;
- @property (weak, nonatomic) IBOutlet UILabel *namelab;
- @property (weak, nonatomic) IBOutlet UIImageView *haveNeedImageView;
- @property (strong, nonatomic) IBOutlet UIButton *addbutton;
- @property (weak, nonatomic) IBOutlet UIButton *deleteButton;
- @end
- NS_ASSUME_NONNULL_END
|