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
139 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,否则,出自本博客的文章拒绝转载或再转载,谢谢合作。
1145 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
1276 0
|
2月前
|
开发框架 前端开发 Android开发
安卓与iOS开发中的跨平台策略
在移动应用开发的战场上,安卓和iOS两大阵营各据一方。随着技术的演进,跨平台开发框架成为开发者的新宠,旨在实现一次编码、多平台部署的梦想。本文将探讨跨平台开发的优势与挑战,并分享实用的开发技巧,帮助开发者在安卓和iOS的世界中游刃有余。
|
24天前
|
iOS开发 开发者 MacOS
深入探索iOS开发中的SwiftUI框架
【10月更文挑战第21天】 本文将带领读者深入了解Apple最新推出的SwiftUI框架,这一革命性的用户界面构建工具为iOS开发者提供了一种声明式、高效且直观的方式来创建复杂的用户界面。通过分析SwiftUI的核心概念、主要特性以及在实际项目中的应用示例,我们将展示如何利用SwiftUI简化UI代码,提高开发效率,并保持应用程序的高性能和响应性。无论你是iOS开发的新手还是有经验的开发者,本文都将为你提供宝贵的见解和实用的指导。
118 66
|
10天前
|
存储 监控 API
app开发之安卓Android+苹果ios打包所有权限对应解释列表【长期更新】-以及默认打包自动添加权限列表和简化后的基本打包权限列表以uniapp为例-优雅草央千澈
app开发之安卓Android+苹果ios打包所有权限对应解释列表【长期更新】-以及默认打包自动添加权限列表和简化后的基本打包权限列表以uniapp为例-优雅草央千澈