美文网首页与时俱进的IT
UI(二十五)UIAlertController 弹出框、UIT

UI(二十五)UIAlertController 弹出框、UIT

作者: 社会主义顶梁鹿 | 来源:发表于2018-07-30 17:59 被阅读0次

    弹出框:

     1、警告:UIAlertView

     2、选择:UIActionSheet

    ios 8.0之后 弃用

     统一使用:UIAlertController 是一个视图控制器 -> 模态到弹出视图控制器()

     初始化方法:

     + (instancetype)alertControllerWithTitle:(nullable NSString *)title message:(nullable NSString *)message preferredStyle:(UIAlertControllerStyle)preferredStyle

     弹出框上的按钮:UIAlertAction

     初始化方法:actionWithTitle:按钮名字style:风格 handler:直接回车-block

     UIAlertActionStyleDefault,默认

     UIAlertActionStyleCancel,取消

    UIAlertActionStyleDestructive 红色的 慎重点击

     跳转的方法

    [self presentViewController:alretanimated:YES completion:^{

        }];

    #pragma ----UITextView------

     可以输入 也可以滚动

    //可以进行超链接 设置超链接格式

    [[UITextView alloc]init].dataDetectorTypes = UIDataDetectorTypeAll;

    相关文章

      网友评论

        本文标题:UI(二十五)UIAlertController 弹出框、UIT

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