//
|
// 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
|