InPutTextCell.h 661 B

12345678910111213141516171819202122232425
  1. //
  2. // InPutTextCell.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. #import "FormFieldsModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface InPutTextCell : TDTableViewCell
  12. @property (weak, nonatomic) IBOutlet UIImageView *haveNeedImageView;
  13. @property (weak, nonatomic) IBOutlet UILabel *nameLab;
  14. @property (weak, nonatomic) IBOutlet UIButton *inputButton;
  15. @property (weak, nonatomic) IBOutlet UITextField *inputtextFeild;
  16. @property (weak, nonatomic) IBOutlet UIView *bottomLineView;
  17. @property (weak, nonatomic) FormFieldsModel *formFieldsModel;
  18. @end
  19. NS_ASSUME_NONNULL_END