码迷,mamicode.com
首页 > 其他好文 > 详细

UIAlertController简单使用

时间:2018-07-10 14:43:27      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:mat   替代   handler   class   let   cancel   action   span   alert   

UIAlertView   在iOS2 的时候开始使用,在iOS9 的时候被摒弃

NS_CLASS_DEPRECATED_IOS(2_0, 9_0, "UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead") __TVOS_PROHIBITED

 

由UIAlertController替代

常用使用方法

    UIAlertController *alertvc = [UIAlertController alertControllerWithTitle:@"提示" message:@"表视图封装" preferredStyle:UIAlertControllerStyleAlert];
    UIAlertAction *sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        //要执行的操作
    }];
    [alertvc addAction:sureAction];
    UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消"style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        //要执行的操作
        
    }];
    [alertvc addAction:cancelAction];
    
    [self  presentViewController:alertvc animated:YES completion:nil];

 

UIAlertController简单使用

标签:mat   替代   handler   class   let   cancel   action   span   alert   

原文地址:https://www.cnblogs.com/OIMM/p/9288624.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!