12345678910111213141516171819202122232425 |
- //
- // InPutTextCell.h
- // smartRhino
- //
- // Created by tederen on 2019/11/2.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "TDTableViewCell.h"
- #import "FormFieldsModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface InPutTextCell : TDTableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *haveNeedImageView;
- @property (weak, nonatomic) IBOutlet UILabel *nameLab;
- @property (weak, nonatomic) IBOutlet UIButton *inputButton;
- @property (weak, nonatomic) IBOutlet UITextField *inputtextFeild;
- @property (weak, nonatomic) IBOutlet UIView *bottomLineView;
- @property (weak, nonatomic) FormFieldsModel *formFieldsModel;
- @end
- NS_ASSUME_NONNULL_END
|