//支持InputViewStyleDefault 与 InputViewStyleLarge 两种样式
[XHInputView showWithStyle:InputViewStyleDefault configurationBlock:^(XHInputView *inputView) {
/** 请在此block中设置inputView属性 */
/** 代理 */
inputView.delegate = self;
/** 占位符文字 */
inputView.placeholder = @"请输入评论文字...";
/** 设置最大输入字数 */
inputView.maxCount = 50;
/** 输入框颜色 */
inputView.textViewBackgroundColor = [UIColor groupTableViewBackgroundColor];
/** 更多属性设置,详见XHInputView.h文件 */
} sendBlock:^BOOL(NSString *text) {
if(text.length){
NSLog(@"输入为信息为:%@",text);
return YES;//return YES,收起键盘
}else{
NSLog(@"显示提示框-你输入的内容为空");
return NO;//return NO,不收键盘
}
}];
/** XHInputView 将要显示 */
-(void)xhInputViewWillShow:(XHInputView *)inputView
{
/** 如果你工程中有配置IQKeyboardManager,并对XHInputView造成影响,请在XHInputView将要显示时将其关闭 */
//[IQKeyboardManager sharedManager].enableAutoToolbar = NO;
//[IQKeyboardManager sharedManager].enable = NO;
}
/** XHInputView 将要影藏 */
-(void)xhInputViewWillHide:(XHInputView *)inputView{
/** 如果你工程中有配置IQKeyboardManager,并对XHInputView造成影响,请在XHInputView将要影藏时将其打开 */
//[IQKeyboardManager sharedManager].enableAutoToolbar = YES;
//[IQKeyboardManager sharedManager].enable = YES;
}
/** 最大输入字数 */
@property (nonatomic, assign) NSInteger maxCount;
/** 字体 */
@property (nonatomic, strong) UIFont * font;
/** 占位符 */
@property (nonatomic, copy) NSString *placeholder;
/** 占位符颜色 */
@property (nonatomic, strong) UIColor *placeholderColor;
/** 输入框背景颜色 */
@property (nonatomic, strong) UIColor* textViewBackgroundColor;
/** 发送按钮背景色 */
@property (nonatomic, strong) UIColor *sendButtonBackgroundColor;
/** 发送按钮Title */
@property (nonatomic, copy) NSString *sendButtonTitle;
/** 发送按钮圆角大小 */
@property (nonatomic, assign) CGFloat sendButtonCornerRadius;
/** 发送按钮字体 */
@property (nonatomic, strong) UIFont * sendButtonFont;
- 1.将 XHInputView 文件夹添加到工程目录中
- 2.导入 XHInputView.h
- 1.在 Podfile 中添加 pod 'XHInputView'
- 2.执行 pod install 或 pod update
- 3.导入 XHInputView.h
- 该项目最低支持 iOS 7.0 和 Xcode 7.0
XHInputView 使用 MIT 许可证,详情见 LICENSE 文件