iOS - UIAlertController

简介: 前言 NS_CLASS_AVAILABLE_IOS(8_0) @interface UIAlertController : UIViewController @available(iOS 8.

前言

    NS_CLASS_AVAILABLE_IOS(8_0) @interface UIAlertController : UIViewController
    @available(iOS 8.0, *)       public class UIAlertController : UIViewController

1、alertController 的创建

  • Objective-C

        // 1. 创建时不添加按钮
    
            // 实例化 alertController 对象
            UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"警告" 
                                                                                     message:@"真的要关闭 !" 
                                                                              preferredStyle:UIAlertControllerStyleAlert];
    
            // 显示,模态视图显示
            [self presentViewController:alertController animated:YES completion:nil];
    
        // 2. 创建时添加按钮等信息
    
            // 实例化 UIAlertController 对象
            UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"警告" 
                                                                                     message:@"真的要关闭 !" 
                                                                              preferredStyle:UIAlertControllerStyleAlert];
    
            // 创建按钮
            UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消" 
                                                                   style:UIAlertActionStyleCancel 
                                                                 handler:nil];
    
            UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"确定" 
                                                               style:UIAlertActionStyleDefault 
                                                             handler:nil];
            UIAlertAction *noAction = [UIAlertAction actionWithTitle:@"考虑一下" 
                                                               style:UIAlertActionStyleDestructive 
                                                             handler:nil];
            // 向 alertController 上添加按钮
            [alertController addAction:cancelAction];
            [alertController addAction:okAction];
            [alertController addAction:noAction];
    
            // 显示 alertController 视图
            [self presentViewController:alertController animated:YES completion:nil];
  • Swift

        // 1. 创建时不添加按钮
    
            // 实例化 alertController 对象
            let alertController:UIAlertController = UIAlertController(title: "警告", 
                                                                    message: "真的要关闭 !", 
                                                             preferredStyle: .Alert)
    
            // 显示,模态视图显示
            self.presentViewController(alertController, animated: true, completion: nil)
    
        // 2. 创建时添加按钮等信息
    
            // 实例化 alertController 对象
            let alertController:UIAlertController = UIAlertController(title: "警告", 
                                                                    message: "真的要关闭 !", 
                                                             preferredStyle: .Alert)
    
            // 创建按钮
            let cancelAction:UIAlertAction = UIAlertAction(title: "取消", style: .Cancel, handler: nil)
            let okAction:UIAlertAction = UIAlertAction(title: "确定", style: .Default, handler: nil)
            let noAction:UIAlertAction = UIAlertAction(title: "考虑一下", style: .Destructive, handler: nil)
    
            // 向 alertController 上添加按钮
            alertController.addAction(cancelAction)
            alertController.addAction(okAction)
            alertController.addAction(noAction)
    
            // 显示 alertController 视图
            self.presentViewController(alertController, animated: true, completion: nil)

2、alertController 的设置

  • Objective-C

        // 设置警告框类型
        /*
            UIAlertControllerStyleActionSheet = 0,   上拉菜单,操作表,底部弹出
            UIAlertControllerStyleAlert              对话框,警告,中间弹出
        */
        UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"警告" 
                                                                                 message:@"真的要关闭 ?" 
                                                                          preferredStyle:UIAlertControllerStyleAlert];
    
        // 设置按钮类型
        /*
            UIAlertActionStyleDefault = 0,  默认蓝色按钮,可以有多个
            UIAlertActionStyleCancel,       取消按钮,显示在左侧或最下边,有且只能有一个
            UIAlertActionStyleDestructive   红色警示按钮,可以有多个,
                                            《iOS 用户界面指南》要求所有的 “警示” 样式按钮都必须排名第一
        */
        UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消" 
                                                               style:UIAlertActionStyleCancel 
                                                             handler:nil];
    
        // 设置按钮点击响应事件
        UIAlertAction *closeAction = [UIAlertAction actionWithTitle:@"关闭" 
                                                              style:UIAlertActionStyleDestructive 
                                                            handler:^(UIAlertAction * _Nonnull action) {
    
            /*
                点击了按钮时响应的事件
            */
        }];
    
        // 添加输入框
        /*
            只能添加到 UIAlertControllerStyleAlert 上,可以添加多个
        */
        [alertController addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
    
            /*
                设置添加的 textField 属性
            */
        }];
    
        // 添加点击按钮
        /* 
            添加警告框上的按钮,可以添加多个
            取消按钮在左侧或最下边,其它按钮按照添加的顺序排列
        */
        [alertController addAction:cancelAction];
    
        // 设置首选按钮
        /*
            必须在添加按钮(addAction)完成后设置,iOS 9 新添加
            首选的按钮会有加粗效果,只能用在 UIAlertControllerStyleAlert 中
        */
        alertController.preferredAction = okAction;
    
        // 设置按钮激活状态
        /*
            YES 按钮激活,可点击。NO 按钮禁用,不可点击
        */
        okAction.enabled = YES;
    
        // 显示警告框视图
        [self presentViewController:alertController animated:YES completion:nil];
    
        // 设置警告框标题
        alertController.title = @"登录";
    
        // 设置警告框提示信息
        alertController.message = @"请输入用户名和密码登录 !";
    
        // 获取警告框标题
        NSString *alertTitle = alertController.title;
    
        // 获取警告框提示信息
        NSString *alertMessage = alertController.message;
    
        // 获取警告框类型,readonly
        UIAlertControllerStyle alertStyle = alertController.preferredStyle;
    
        // 获取所有输入框,readonly
        NSArray<UITextField *> *textFieldArray = alertController.textFields;
    
        // 获取所有按钮,readonly
        NSArray<UIAlertAction *> *actionsArray = alertController.actions;
    
        // 获取按钮标题,readonly
        NSString *actionTitle = okAction.title;
    
        // 获取按钮类型,readonly
        UIAlertActionStyle actionStyle = okAction.style;
    
        // 获取首选按钮
        UIAlertAction *preferredAction = alertController.preferredAction;
    
        // 获取按钮激活状态
        BOOL actionEnabled = okAction.enabled;
  • Swift

        // 设置警告框类型
        /*
            case ActionSheet   上拉菜单,操作表,底部弹出
            case Alert         对话框,警告,中间弹出
        */
        let alertController:UIAlertController = UIAlertController(title: "警告", 
                                                                message: "真的要关闭 !", 
                                                         preferredStyle: .Alert)
    
        // 设置按钮类型
        /*
            case Default       默认蓝色按钮,可以有多个
            case Cancel        取消按钮,显示在左侧或最下边,有且只能有一个
            case Destructive   红色警示按钮,可以有多个,
                               《iOS 用户界面指南》要求所有的 “警示” 样式按钮都必须排名第一
        */
        let cancelAction:UIAlertAction = UIAlertAction(title: "取消", style: .Cancel, handler: nil)
    
        // 设置按钮点击响应事件
        let closeAction:UIAlertAction = UIAlertAction(title: "关闭", 
                                                      style: .Destructive) { (action:UIAlertAction) in
    
            /*
                点击了按钮时响应的事件
            */
        }
    
        // 添加输入框
        /*
            只能添加到 UIAlertControllerStyleAlert 上,可以添加多个
        */
        alertController.addTextFieldWithConfigurationHandler { (textField:UITextField) in
    
            /*
                设置添加的 textField 属性
            */
        }
    
        // 添加点击按钮
        /*
            添加警告框上的按钮,可以添加多个
            取消按钮在左侧或最下边,其它按钮按照添加的顺序排列
        */
        alertController.addAction(cancelAction)
    
        // 设置首选按钮
        /*
            必须在添加按钮(addAction)完成后设置,iOS 9 新添加
            首选的按钮会有加粗效果,只能用在 UIAlertControllerStyleAlert 中
        */
        alertController.preferredAction = okAction
    
        // 设置按钮激活状态
        /*
            YES 按钮激活,可点击。NO 按钮禁用,不可点击
        */
        okAction.enabled = true
    
        // 显示警告框视图
        self.presentViewController(alertController, animated: true, completion: nil)
    
        // 设置警告框标题
        alertController.title = "登录"
    
        // 设置警告框提示信息
        alertController.message = "请输入用户名和密码登录 !"
    
        // 获取警告框标题
        let alertTitle:String? = alertController.title
    
        // 获取警告框提示信息
        let alertMessage:String? = alertController.message
    
        // 获取警告框类型,readonly
        let alertStyle:UIAlertControllerStyle = alertController.preferredStyle
    
        // 获取所有输入框,readonly
        let textFieldArray:[UITextField]? = alertController.textFields
    
        // 获取所有按钮,readonly
        let actionsArray:[UIAlertAction] = alertController.actions
    
        // 获取按钮标题,readonly
        let actionTitle:String? = okAction.title
    
        // 获取按钮类型,readonly
        let actionStyle:UIAlertActionStyle = okAction.style
    
        // 获取首选按钮
        let preferredAction:UIAlertAction? = alertController.preferredAction
    
        // 获取按钮激活状态
        let actionEnabled:Bool = okAction.enabled
目录
相关文章
|
iOS开发 开发者
iOS8统一的系统提示控件——UIAlertController
iOS8统一的系统提示控件——UIAlertController
133 0
iOS8统一的系统提示控件——UIAlertController
|
Android开发 iOS开发
iOS 8 引入的 UIActionSheet 和 UIAlertView 的替代品 - UIAlertController
iOS 8 引入的 UIActionSheet 的替代品 - UIAlertController 太阳火神的美丽人生 (http://blog.csdn.net/opengl_es) 本文遵循“署名-非商业用途-保持一致”创作公用协议 转载请保留此句:太阳火神的美丽人生 -  本博客专注于 敏捷开发及移动和物联设备研究:iOS、Android、Html5、Arduino、pcDuino,否则,出自本博客的文章拒绝转载或再转载,谢谢合作。
1135 0
iOS8开发之iOS8的UIAlertController
<p style="margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px; font-family:Arial; font-size:14px; line-height:26px"> 在iOS8之前用UIActionSheet和UIAlertView来提供按钮选择和提示性信息,比如UIActionSh
1267 0
|
1月前
|
Java Android开发 Swift
安卓与iOS开发对比:平台选择对项目成功的影响
【10月更文挑战第4天】在移动应用开发的世界中,选择合适的平台是至关重要的。本文将深入探讨安卓和iOS两大主流平台的开发环境、用户基础、市场份额和开发成本等方面的差异,并分析这些差异如何影响项目的最终成果。通过比较这两个平台的优势与挑战,开发者可以更好地决定哪个平台更适合他们的项目需求。
98 1
|
1月前
|
设计模式 安全 Swift
探索iOS开发:打造你的第一个天气应用
【9月更文挑战第36天】在这篇文章中,我们将一起踏上iOS开发的旅程,从零开始构建一个简单的天气应用。文章将通过通俗易懂的语言,引导你理解iOS开发的基本概念,掌握Swift语言的核心语法,并逐步实现一个具有实际功能的天气应用。我们将遵循“学中做,做中学”的原则,让理论知识和实践操作紧密结合,确保学习过程既高效又有趣。无论你是编程新手还是希望拓展技能的开发者,这篇文章都将为你打开一扇通往iOS开发世界的大门。
|
1月前
|
搜索推荐 IDE API
打造个性化天气应用:iOS开发之旅
【9月更文挑战第35天】在这篇文章中,我们将一起踏上iOS开发的旅程,通过创建一个个性化的天气应用来探索Swift编程语言的魅力和iOS平台的强大功能。无论你是编程新手还是希望扩展你的技能集,这个项目都将为你提供实战经验,帮助你理解从构思到实现一个应用的全过程。让我们开始吧,构建你自己的天气应用,探索更多可能!
61 1