萤石云 iOSSDK,移植跨平台相关工程
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
26
27
28
29
30
31
//
//  HDLEZInputViewController.h
//  EZSDK
//
//  Created by 陈启扬 on 2023/3/13.
//
 
#import "HDLEZBaseViewController.h"
#import "HDLEZInputView.h"
 
NS_ASSUME_NONNULL_BEGIN
 
@protocol HDLEZInputViewControllerDelegate <NSObject>
/*输入了内容
 @param content 内容
 @param inputType 输入类型
 */
-(void)inputContent:(NSString *)content inputType:(HDLEZInputType)inputType;
@end
 
@interface HDLEZInputViewController : HDLEZBaseViewController
@property (nonatomic, copy)NSString *navTitle;//标题
@property (nonatomic, copy)NSString *describe;//描述
 
@property (nonatomic, assign)HDLEZInputType inputType;//输入类型
 
@property (nonatomic, weak) id<HDLEZInputViewControllerDelegate> inputDelegate;//代理
 
@end
 
NS_ASSUME_NONNULL_END