UIAlertController 和  UIAlertAction 用法:

1. 最简单的提醒视图:

这里我们实现一个最简单的提醒视图,包含1个标题,1行信息,1个按键,按下按键后,什么都不发生:

  1. - (IBAction)doAlert:(id)sender {
  2. // 准备初始化配置参数
  3. NSString *title = @"Alert Button Selected";
  4. NSString *message = @"I need your attention NOW!";
  5. NSString *okButtonTitle = @"OK";
  6. // 初始化
  7. UIAlertController *alertDialog = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleAlert];
  8. // 创建操作
  9. UIAlertAction *okAction = [UIAlertAction actionWithTitle:okButtonTitle style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  10. // 操作具体内容
  11. // Nothing to do.
  12. }];
  13. // 添加操作
  14. [alertDialog addAction:okAction];
  15. // 呈现警告视图
  16. [self presentViewController:alertDialog animated:YES completion:nil];
  17. }

进入程序后,点击“Alert Me!”按钮可触发这个提醒框,如图所示:

       
2. 多个按键的提醒视图
       这里我们实现一个最简单的提醒视图,包含1个标题,1行信息,3个按键,按下按键后,标签显示按下的按键名称:
  1. - (IBAction)doMultiButtonAlert:(id)sender {
  2. // 准备初始化配置参数
  3. NSString *title = @"Alert Button Selected";
  4. NSString *message = @"I need your attention NOW!";
  5. NSString *okButtonTitle = @"OK";
  6. NSString *neverButtonTitle = @"Never";
  7. NSString *laterButtonTitle = @"Maybe Later";
  8. // 初始化
  9. UIAlertController *alertDialog = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleAlert];
  10. // 分别3个创建操作
  11. UIAlertAction *laterAction = [UIAlertAction actionWithTitle:laterButtonTitle style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  12. // 普通按键
  13. self.userOutput.text = @"Clicked 'Maybe Later'";
  14. }];
  15. UIAlertAction *neverAction = [UIAlertAction actionWithTitle:neverButtonTitle style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  16. // 红色按键
  17. self.userOutput.text = @"Clicked 'Never'";
  18. }];
  19. UIAlertAction *okAction = [UIAlertAction actionWithTitle:okButtonTitle style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  20. // 取消按键
  21. self.userOutput.text = @"Clicked 'OK'";
  22. }];
  23. // 添加操作(顺序就是呈现的上下顺序)
  24. [alertDialog addAction:laterAction];
  25. [alertDialog addAction:neverAction];
  26. [alertDialog addAction:okAction];
  27. // 呈现警告视图
  28. [self presentViewController:alertDialog animated:YES completion:nil];
  29. }

3个按键分别代表了3种不同类型的按键,分别是默认按键(普通)、销毁按键(红色)和取消按键(粗体)。从代码看其实就是在上一个的基础上加了3个 UIAlertAction 而已,然后分别设置不同的 style,效果如下:

3. 带输入框的提醒视图
       如何添加输入框呢?新的 iOS 8 提供了相应的接口,使增加输入框就像增加按键方法一样简单。这里还是在第1个方法的基础上改动。
  1. - (IBAction)doAlertInput:(id)sender {
  2. // 准备初始化配置参数
  3. NSString *title = @"Email Address";
  4. NSString *message = @"Please enter your your email address:";
  5. NSString *okButtonTitle = @"OK";
  6. // 初始化
  7. UIAlertController *alertDialog = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleAlert];
  8. // 创建文本框
  9. [alertDialog addTextFieldWithConfigurationHandler:^(UITextField *textField){
  10. textField.placeholder = @"Your Email";
  11. textField.secureTextEntry = NO;
  12. }];
  13. // 创建操作
  14. UIAlertAction *okAction = [UIAlertAction actionWithTitle:okButtonTitle style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  15. // 读取文本框的值显示出来
  16. UITextField *userEmail = alertDialog.textFields.firstObject;
  17. self.userOutput.text = userEmail.text;
  18. }];
  19. // 添加操作(顺序就是呈现的上下顺序)
  20. [alertDialog addAction:okAction];
  21. // 呈现警告视图
  22. [self presentViewController:alertDialog animated:YES completion:nil];
  23. }

在创建操作前先创建文本框,以便后面的按键可以操作文本框内容。创建文本框也只是用了一个简单的方法而已,想创建更多文本框就再使用多次这个方法即可,程序效果如下:


4. 提醒图表
       与第2个和第3个方法相比,创建提醒图表简直易如反掌。因为和第1个方法相比,只需要改动一个参数就可以,即把创建UIAlertController实例的参数 UIAlertControllerStyleAlert 改为 UIAlertControllerStyleActionSheet ,别的都不用变。
  1. - (IBAction)doActionSheet:(id)sender {
  2. // 准备初始化配置参数
  3. NSString *title = @"Alert Button Selected";
  4. NSString *message = @"I need your attention NOW!";
  5. NSString *okButtonTitle = @"OK";
  6. NSString *neverButtonTitle = @"Never";
  7. NSString *laterButtonTitle = @"Maybe Later";
  8. // 初始化
  9. UIAlertController *alertDialog = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleActionSheet];
  10. // 分别3个创建操作
  11. UIAlertAction *laterAction = [UIAlertAction actionWithTitle:laterButtonTitle style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  12. // 普通按键
  13. self.userOutput.text = @"Clicked 'Maybe Later'";
  14. }];
  15. UIAlertAction *neverAction = [UIAlertAction actionWithTitle:neverButtonTitle style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
  16. // 红色按键
  17. self.userOutput.text = @"Clicked 'Never'";
  18. }];
  19. UIAlertAction *okAction = [UIAlertAction actionWithTitle:okButtonTitle style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  20. // 取消按键
  21. self.userOutput.text = @"Clicked 'OK'";
  22. }];
  23. // 添加操作(顺序就是呈现的上下顺序)
  24. [alertDialog addAction:laterAction];
  25. [alertDialog addAction:neverAction];
  26. [alertDialog addAction:okAction];
  27. // 呈现警告视图
  28. [self presentViewController:alertDialog animated:YES completion:nil];
  29. }

效果如图:

IOS8 : UIAlertController的更多相关文章

  1. IOS8 UIAlertController 弹框

    本文转载至 http://blog.csdn.net/jinkaiouyang/article/details/35551769 IOS8中,Apple将UIActionSheet和UIAlertVi ...

  2. iOS8 UIAlertController弹出框中添加视图(例如日期选择器等等)

    UIDatePicker *datePicker = [[UIDatePicker alloc] init]; datePicker.datePickerMode = UIDatePickerMode ...

  3. 升级IOS8游戏上传自定义头像功能失效的问题

    为了支持arm64,之前已经折腾了很久,昨晚打包准备提交苹果审核时,测试那边的同事反馈说游戏上传自定义头像功能不可用了. 游戏上传自定义功能的简介:卡牌游戏最初是<比武招亲>中有一个充VI ...

  4. UIAlertController custom font, size, color

    本文转载至 http://stackoverflow.com/questions/26460706/uialertcontroller-custom-font-size-color up vote2d ...

  5. iOS改变UIAlertView、UIActionSheet、UIAlertController系统字体颜色

    废话不多说,直接上代码,效果是最好的说服力 1.改变UIAlertView字体颜色 [UIView appearance].tintColor = [UIColor greenColor]; 个人还是 ...

  6. iOS开发之UIAlertController的适配

    在iOS8中,只能用UIAlertController.而原来的UIAlertView及UIActionSheet已经被抛弃掉了.但是如果一台iOS 7 的手机运行到有UIAlertControlle ...

  7. UIActionSheet 修改字体颜色

    -(void)willPresentActionSheet:(UIActionSheet *)actionSheet { SEL selector = NSSelectorFromString(@&q ...

  8. UIAlertViewController+TextField 输入框

    if (IOS8) { UIAlertController *alertController=[UIAlertController alertControllerWithTitle:CustomLoc ...

  9. runtime查找 UIAlertAction 的key 及 UIActionSheet 设置字体颜色

    修改不了颜色了 结果发现kvo 的key 不对 哎 直接上代码 设置正确的属性找到对应的key  还以为iOS 11改变了方法 unsigned int count; Ivar *ivars =  c ...

随机推荐

  1. ecshop--标签数组

    $properties  商品属性 array(1) { ["商品属性"]=> array(1) { [178]=> array(2) { ["name&qu ...

  2. UVa 543 - Goldbach's Conjecture

    题目大意:给一个偶数,判断是否是两个素数的和. 先用sieve方法生成一个素数表,然后再进行判断即可. #include <cstdio> #include <vector> ...

  3. [Angular Tutorial] 0-Bootstraping

    在这一节的tutorial中,您将会逐渐熟悉AngularJS phonecat app的最重要的源代码文件.您也将学到如何将开发服务器与angular-seed绑定到一起,并且在浏览器中运行应用. ...

  4. Yii 1.0 基础

    骨架搭建 1.下载2.windows 创建PHP环境变量,找到php.exe的目录D:\wamp\bin\php\php5.3.5,右键我的电脑,属性\高级设置,path最后添加 ;D:\wamp\b ...

  5. mysql 和excel相互转换

    原文地址:http://blog.sina.com.cn/s/blog_43eb83b90100h0mc.html 今天是全国数学建模比赛,同学选的一个题目需要对一个large的Excel表格进行统计 ...

  6. noip2016天天爱跑步

    题目描述 小c同学认为跑步非常有趣,于是决定制作一款叫做<天天爱跑步>的游戏.«天天爱跑步»是一个养成类游戏,需要玩家每天按时上线,完成打卡任务. 这个游戏的地图可以看作一一棵包含 个结点 ...

  7. HDU-1020-Encoding(水题,但题目意思容易搞错,英语的问题)

    题目链接 http://acm.hdu.edu.cn/webcontest/contest_showproblem.php?pid=1000&ojid=0&cid=7996&h ...

  8. 推荐学习C#的地方

    大神 http://www.cnblogs.com/kingjiong/category/152147.html

  9. PHP Memcached 实现简单数据库缓存

    Memcache常用方法 Memcache::add — 添加一个值,如果已经存在,则返回false Memcache::addServer — 添加一个可供使用的服务器地址 Memcache::cl ...

  10. Cookie的一些用法

    Cookie的一些用法: package com.stono.servlet.listenerorder; import java.io.IOException; import java.io.Pri ...