// // AddFileTableViewCell.h // smartRhino // // Created by tederen on 2019/11/2. // Copyright © 2019 tederen. All rights reserved. // #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