美文网首页
iOS7、iOS8之后的弹窗

iOS7、iOS8之后的弹窗

作者: Tanenbaum | 来源:发表于2015-09-24 10:47 被阅读0次

    在iOS7之前的弹窗都是使用的传统的UIAlertView,代码如下:


    //创建弹框

    UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"提示" message:@"输入的数字不合理" delegate:nil cancelButtonTitle:@"取消" otherButtonTitles:nil, nil];

    //显示弹框

    [alertView  show];


    在iOS8以来的弹框方式变为:


    //                2.3.1创建一个弹框

    UIAlertController *alertVc = [UIAlertController alertControllerWithTitle:@"提示" message:@"输入的数字不合理" preferredStyle:UIAlertControllerStyleAlert];

    //        2.3.2添加取消按钮

    [alertVc addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil]];

    //        2.3.3.显示

    [self presentViewController:alertVc animated:NO completion:nil];

    相关文章

      网友评论

          本文标题:iOS7、iOS8之后的弹窗

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