SelectTextCell.h 504 B

12345678910111213141516171819202122
  1. //
  2. // SelectTextCell.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. NS_ASSUME_NONNULL_BEGIN
  10. @interface SelectTextCell : TDTableViewCell
  11. @property (weak, nonatomic) IBOutlet UILabel *nameLab;
  12. @property (weak, nonatomic) IBOutlet UIImageView *haveImageView;
  13. @property (weak, nonatomic) IBOutlet TDButton *selectButton;
  14. @property (weak, nonatomic) IBOutlet UIView *bottomLineView;
  15. @end
  16. NS_ASSUME_NONNULL_END