IOS8 : UIAlertController

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. }

效果如图:

时间: 2024-10-13 01:02:10

IOS8 : UIAlertController的相关文章

IOS8 UIAlertController 弹框

本文转载至 http://blog.csdn.net/jinkaiouyang/article/details/35551769 IOS8中,Apple将UIActionSheet和UIAlertView整合成一个接口UIAlertController. 原来的是一个view,展示在window视图之上.现在改成了controller,展示方式变成由当前的controller直接present出来. 下面看看具体的接口: [html] view plaincopy UIAlertControll

IOS8 UIAlertController 提示框

IOS8中,Apple将UIActionSheet和UIAlertView整合成一个接口UIAlertController. 原来的是一个view,展示在window视图之上.现在改成了controller,展示方式变成由当前的controller直接present出来. UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"This is Title" message:@"This 

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

UIDatePicker *datePicker = [[UIDatePicker alloc] init]; datePicker.datePickerMode = UIDatePickerModeDate; UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"\n\n\n\n\n\n\n\n\n\n\n\n" message:nil preferredStyle:UIAlertContro

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

为了支持arm64,之前已经折腾了很久,昨晚打包准备提交苹果审核时,测试那边的同事反馈说游戏上传自定义头像功能不可用了. 游戏上传自定义功能的简介:卡牌游戏最初是<比武招亲>中有一个充VIP之后就可使用了上传自定义功能的特权,我们的游戏就"复制"了该功能.   具体实现就是点击游戏内换自定义头像的按钮后,调用不同平台相应的方法,获取用户选择的图片数据,然后将图片裁剪再传给后台保存至特定的目录下.   测试设备是ipad air2,系统版本IOS 8.0.1,点击游戏内的按钮

UIAlertController custom font, size, color

本文转载至 http://stackoverflow.com/questions/26460706/uialertcontroller-custom-font-size-color up vote2down votefavorite 3 I am using new UIAlertController for showing alerts. I have this code: // nil titles break alert interface on iOS 8.0, so we'll be

浅谈UIAlertView与UIAlertController

苹果在iOS8.0后推出了UIAlertController以代替UIAlertView,导致的后果就是UIAlertView在iOS9.0之后被deprecated了,也就是iOS8.0之后只能用UIAlertController,iOS8.0之前只能用UIAlertView.所以如果想同时兼容iOS7和iOS8,就判断一下系统的版本,demo代码如下: if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0) { //

UIAlertViewController+TextField 输入框

if (IOS8) { UIAlertController *alertController=[UIAlertController alertControllerWithTitle:CustomLocalizedString(@"SetIp", nil) message:@"" preferredStyle:UIAlertControllerStyleAlert]; [alertController addTextFieldWithConfigurationHand

iOS8以后UIAlertView和UIActionSheet两种alert页面都将通过UIAlertController来创建

1. Important: UIAlertView is deprecated in iOS 8. (Note that UIAlertViewDelegate is also deprecated.) To create and manage alerts in iOS 8 and later, instead use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert. //UIAlertView和UI

iOS iOS8新特性-UIAlertController

iOS iOS8新特性--UIAlertController 1. iOS7及iOS7之前警告类控件有UIAlertView和UIActionSheet 1.1 UIAlertView的使用 UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"警告" message:@"这是一个UIAlertView" delegate:nil cancelButtonTitle:@"取消" oth