1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| //
| // HDLEZInputView.h
| // EZSDK
| //
| // Created by 陈启扬 on 2023/3/13.
| //
|
| #import <UIKit/UIKit.h>
|
| typedef enum {
| HDLEZInputType_User=0, //使用人
| HDLEZInputType_UseCount=1,//使用次数
| }HDLEZInputType;//输入类型
|
| NS_ASSUME_NONNULL_BEGIN
|
| @interface HDLEZInputView : UIView
| @property (nonatomic, strong)UITextField *inputTextF;//输入框
| @property (nonatomic, strong)UILabel *describeL;//描述lable
|
| @property (nonatomic, assign)HDLEZInputType inputType;//输入类型
|
| @end
|
| NS_ASSUME_NONNULL_END
|
|