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

UIAlertController使用

时间:2017-01-05 08:59:12      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:tle   struct   界面   str   self   登录   sheet   let   size   

    //1创建弹框控制器
    UIAlertController *alertVc = [UIAlertController alertControllerWithTitle:@"亲,确定要滚吗?" message:nil preferredStyle:UIAlertControllerStyleActionSheet];
    //2.1添加确定事件
    UIAlertAction *sureBtn = [UIAlertAction actionWithTitle:info style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
        // 回到登录界面
        [self.navigationController popViewControllerAnimated:YES];
    }];
    [alertVc addAction:sureBtn];
    //2.2添加取消事件
    UIAlertAction *cancelBtn = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
        NSLog(@"---点击了取消按钮");
    }];
    [alertVc addAction:cancelBtn];
    //3展示控制器
    [self presentViewController:alertVc animated:YES completion:nil];

 

UIAlertController使用

标签:tle   struct   界面   str   self   登录   sheet   let   size   

原文地址:http://www.cnblogs.com/dzq1991/p/6251041.html

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