美文网首页程序员
自适应高度的AlertView

自适应高度的AlertView

作者: Lsx_f | 来源:发表于2017-09-09 10:18 被阅读0次

    闲暇时间自己手撸的一个可以输入的文本的AlertView,可以自适应高度!可以定义键盘输入类型,可以限制输入的文本长度。

    效果图如下

    2017-09-09 10_14_57.gif
    使用方法
    -(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
        LSXAlertInputView * alert=[[LSXAlertInputView alloc]initWithTitle:@"提示" PlaceholderText:@"请输入文字" WithKeybordType:LSXKeyboardTypeDefault CompleteBlock:^(NSString *contents) {
            NSLog(@"-----%@",contents);
        }];
        [alert show];
    }
    

    相关文章

      网友评论

        本文标题: 自适应高度的AlertView

        本文链接:https://www.haomeiwen.com/subject/deeojxtx.html