闲暇时间自己手撸的一个可以输入的文本的AlertView,可以自适应高度!可以定义键盘输入类型,可以限制输入的文本长度。
效果图如下
使用方法
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
LSXAlertInputView * alert=[[LSXAlertInputView alloc]initWithTitle:@"提示" PlaceholderText:@"请输入文字" WithKeybordType:LSXKeyboardTypeDefault CompleteBlock:^(NSString *contents) {
NSLog(@"-----%@",contents);
}];
[alert show];
}