AddFileTableViewCell.h 614 B

12345678910111213141516171819202122
  1. //
  2. // AddFileTableViewCell.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/2.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "TDTableViewCell.h"
  9. typedef void(^AddFileTouchBlock)(void);
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface AddFileTableViewCell : TDTableViewCell
  12. @property (nonatomic, copy) AddFileTouchBlock backBlock;
  13. @property (weak, nonatomic) IBOutlet UILabel *namelab;
  14. @property (weak, nonatomic) IBOutlet UIImageView *haveNeedImageView;
  15. @property (strong, nonatomic) IBOutlet UIButton *addbutton;
  16. @property (weak, nonatomic) IBOutlet UIButton *deleteButton;
  17. @end
  18. NS_ASSUME_NONNULL_END