iOS8开发之iOS8的UIAlertController

在iOS8之前用UIActionSheet和UIAlertView来提供按钮选择和提示性信息,比如UIActionSheet可以这样写:

[objc] view
plain
copy

  1. UIActionSheet *actionSheet = [[UIActionSheet alloc]    
  2.                                  initWithTitle:@"title,nil时不显示"    
  3.                                  delegate:self    
  4.                                  cancelButtonTitle:@"取消"    
  5.                                  destructiveButtonTitle:@"确定"    
  6.                                  otherButtonTitles:@"第一项", @"第二项",nil];    
  7.    actionSheet.actionSheetStyle = UIActionSheetStyleBlackOpaque;    
  8.    [actionSheet showInView:self.view];  

然后在协议中实现代理:

[objc] view
plain
copy

  1. (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex    
  2. {    
  3.     if (buttonIndex == 0) {    
  4.         NSLog(@"确定");    
  5.     }else if (buttonIndex == 1) {    
  6.         NSLog(@"第一项");    
  7.     }else if(buttonIndex == 2) {    
  8.         NSLog(@"第二项");    
  9.     }else if(buttonIndex == actionSheet.cancleButtonIndex) {    
  10.         NSLog(@"取消");    
  11.     }     
  12.     
  13. }    
  14. - (void)actionSheetCancel:(UIActionSheet *)actionSheet{      
  15.     
  16. }      
  17. -(void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex{      
  18.     
  19. }      
  20. -(void)actionSheet:(UIActionSheet *)actionSheet willDismissWithButtonIndex:(NSInteger)buttonIndex{      
  21.     
  22. }    

如果需要修改按钮字体、颜色等可以实现以下代理:

[objc] view
plain
copy

  1. - (void)willPresentActionSheet:(UIActionSheet *)actionSheet {  
  2.     for (UIView *subViwe in actionSheet.subviews) {  
  3.         if ([subViwe isKindOfClass:[UILabel class]]) {  
  4.             UILabel *label = (UILabel *)subViwe;  
  5.             label.font = [UIFont systemFontOfSize:16];  
  6.             label.frame = CGRectMake(CGRectGetMinX(label.frame), CGRectGetMinY(label.frame), CGRectGetWidth(label.frame), CGRectGetHeight(label.frame)+20);  
  7.         }  
  8.         if ([subViwe isKindOfClass:[UIButton class]]) {  
  9.             UIButton *button = (UIButton*)subViwe;  
  10.             if ([button.titleLabel.text isEqualToString:@"确定"]) {  
  11.                 [button setTitleColor:[UIColor redColor] forState:UIControlStateNormal];  
  12.             } else {  
  13.                 [button setTitleColor:[WTDevice getGreenColor] forState:UIControlStateNormal];  
  14.             }  
  15.             button.titleLabel.font = [UIFont systemFontOfSize:18];  
  16.         }  
  17.     }  
  18. }  

以上代码(代理部分),在ios7及以下版本中是有效的,但是在iOS8中却不起作用,因为iOS8抛弃了UIActionSheet和UIAlertView,取而代之的是UIAlertController,其使用方法如下(代替UIAlertView):

[objc] view
plain
copy

  1. #ifdef __IPHONE_8_0  
  2.         if (TARGET_IS_IOS8) {  
  3.             UIAlertController *actionSheetController = [UIAlertController alertControllerWithTitle:@"提示"  
  4.                                                                                            message:@"需要设置允许访问相机,操作方法见“设置”->“帮助中心”"  
  5.                                                                                     preferredStyle:UIAlertControllerStyleAlert];  
  6.             UIAlertAction *actionCancel = [UIAlertAction actionWithTitle:@"确定"  
  7.                                                                    style:UIAlertActionStyleDestructive  
  8.                                                                  handler:^(UIAlertAction * action) {}];  
  9.               
  10.             [actionSheetController addAction:actionCancel];  
  11.             [actionSheetController.view setTintColor:[WTDevice getGreenColor]];  
  12.             [self presentViewController:actionSheetController animated:YES completion:nil];  
  13.         }  
  14. #endif  
  15.         if (TARGET_NOT_IOS8) {  
  16.             UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示" message:@"需要设置允许访问相机,操作方法见“设置”->“帮助中心”" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:nil];  
  17.             [alert show];  
  18.         }  

代替UIActionSheet:

[objc] view
plain
copy

  1. #ifdef __IPHONE_8_0  
  2.     if (TARGET_IS_IOS8) {  
  3.         UIAlertController *actionSheetController = [UIAlertController alertControllerWithTitle:@"action选项"  
  4.                                                                                        message:nil  
  5.                                                                                 preferredStyle:UIAlertControllerStyleActionSheet];  
  6.         UIAlertAction *action0 = [UIAlertAction actionWithTitle:@"选项一"  
  7.                                                          style:UIAlertActionStyleDefault  
  8.                                                        handler:^(UIAlertAction * action) {  
  9.                                                            [self customMethod1];  
  10.                                                        }];  
  11.         [actionSheetController addAction:action0];  
  12.           
  13.         UIAlertAction *action = [UIAlertAction actionWithTitle:@"选项二"  
  14.                                                          style:UIAlertActionStyleDefault  
  15.                                                        handler:^(UIAlertAction * action) {  
  16.                                                            [self <span style="font-family: Arial, Helvetica, sans-serif;">customMethod2</span>];  
  17.                                                        }];  
  18.         UIAlertAction *action1 = [UIAlertAction actionWithTitle:@"选项三"  
  19.                                                           style:UIAlertActionStyleDefault  
  20.                                                         handler:^(UIAlertAction * action) {  
  21.                                                             [self customMethod3];  
  22.                                                         }];  
  23.         UIAlertAction *actionCancel = [UIAlertAction actionWithTitle:@"取消"  
  24.                                                                style:UIAlertActionStyleCancel  
  25.                                                              handler:^(UIAlertAction * action) {}];  
  26.           
  27.         [actionSheetController addAction:action];  
  28.         [actionSheetController addAction:action1];  
  29.         [actionSheetController addAction:actionCancel];  
  30.         [actionSheetController.view setTintColor:[UIColor greenColor]];  
  31.         [self presentViewController:actionSheetController animated:YES completion:nil];  
  32.     }  
  33. #endif  
  34.     if (TARGET_NOT_IOS8) {  
  35.         UIActionSheet *as = [[UIActionSheet alloc] initWithTitle:@"action选项" delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:nil otherButtonTitles:@"选项一",@"选项二",@"选项三", nil nil];  
  36.         [as showInView:self.view];  
  37.     }  

至于两者的区别,可以看到,iOS8之前是在controller的view上边又覆盖了一层view,iOS8之后则是present了一个controller并且将代理换成了block,代码显得更加紧凑。

时间: 2024-11-08 22:15:29

iOS8开发之iOS8的UIAlertController的相关文章

php开发之cookie

cookie是一种在浏览器远端存储数据并以此来跟踪和识别用户的机制.简单的说,cookie是web服务器暂时存储在用户硬盘上的一个文件夹,并随时被web浏览器读取.当用户再次访问web网站的时候,网站通过获取cookie记录用户的特定访问信息(如:上次访问的位置,花费的时间,用户名和密码) ,从而迅速做出相应,比如不需要用户输入密码就可以登录. 文本文件的格式如下:用户名@网站地址[数字].txtcookie 的功能主要有以下几个方面: 1,记录访客的某些信息.如可以利用cookie记录用户的访

Eclipse插件开发之FindBugs插件

问题提出: 当我们编写完代码,做完单元测试等各种测试后就提交正式运行,只能由运行的系统来检测我们代码是否有问题了,代码中隐藏的错误在系统运行的过程中被发现后,然后再来进行相应的修改,那么后期修改的代价就相当高了. 解决方法: 现在有很多Java代码分析工具,FindBugs中开源项目当中的一个,它可以帮你找到代码中隐藏的一些错误,提升你的代码能力与系统安全可靠性. 安装 JDK:1.5.0 从http://java.sun.com上去下载安装 Eclipse:3.1.1 从http://www.

ASP.NET移动开发之SelectionList控件

asp.net|select|控件 正如前面提及的那样,SelectionList控件适用于呈现较短列表的数据项.尽管它不具备对长列表的分页显示功能,但是它的呈现形式是丰富多样的.只要设备浏览器支持,SelectionList控件可以以下拉列表.单项按钮.多选按钮和复选框等众多形式存在. SelectionList控件的列表中只有一个可视的数据项,其它的数据项只能以隐藏值的形式与可视的数据项进行关联.要在服务器控件语法中指定隐藏值,可以在<Item>元素中使用Value属性,并且将Value属

C#进行Visio二次开发之Shape的Data1、Data2、Data3的用处

我们知道,Visio的Shape对象有有3个比较特别的属性,分别是Data1.Data2.Data3,平常我们很少用到它,因为我们如果需要属性的话,可能会通过ShapeSheet的Customed Properties中定义我们所需要的信息,需要各种属性的值都可以拿到,那么Data1.Data2.Data3对我们来说,就用处不大,但有的情况下,我们使用它进行一些操作却是非常方便的. 首先我们介绍下,这几个属性是什么东西,Data1.Data2.Data3是Shape的内置属性,不需要额外定义,而

流媒体程序开发之H264解码器移植到OPhone

1.移植目标 将H.264解码器移植到OPhone操作系统之上(NDK+C),并写一个测试程序(OPhoneSDK+Java)测试解码库是否正常运行,下面是解码时的截图: 开发之H264解码器移植到OPhone-网络流媒体解码器"> OPhone的模拟器和Mobile的模拟器一样是模拟ARM指令的,不像Symbian模拟器一样执行的是本地代码,所以在模拟器上模拟出来的效率会比真实手机上的效率要低,之前这款解码器已经优化到在nokia 6600(相当低端的一款手机,CPU主频才120Hz)上

安卓开发之SkBitmap的内存管理

  SkBitmap是skia中很重要的一个类,很多画图动作涉及到SkBitmap,它封装了与位图相关的一系列操作,了解它的内存管理策略有助于我们更好的使用它,了解它的初衷是要想实现对skia中的blitter进行硬件加速. 1. SkBitmap的类结构: 开发之SkBitmap的内存管理-安卓开发内存优化"> 2. SkBitmap的内嵌类Allocator Allocator是SkBitmap的内嵌类,其实只有一个成员函数:allocPixelRef(),所以把它理解为一个接口更合适

Android开发之OpenGL ES 颜色

一.基础知识: 1.平滑着色(Smooth coloring): 将多个顶点的不同颜色混合在一起,创建出漂亮的色彩混合. 2.单调着色: 给图形涂上一种固定单一的颜色. 3.三角形定义的颜色数组(平滑着色): [java] int one = 0x10000; //三角形的顶点颜色值(r,g,b,a) private IntBuffer colorBuffer = IntBuffer.wrap(new int[]{ one,0,0,one, 0,one,0,one, 0,0,one,one, }

Android开发之OpenGL ES 画多边形

一.基础知识: OpenGL ES目前只支持三角形,但任何多边形都可拆分成多个三角形,所以无所谓这个限制的存在. 1.OpenGL中的坐标点: 每一个坐标点由(X, Y, Z)组成. 定义一个三角形的顶点数组: [java] int one = 0x10000; //三角形三个顶点 private IntBuffer triggerBuffer = IntBuffer.wrap(new int[]{ 0,one,0, //上顶点 -one,-one,0, //左下点 one,-one,0,});

基于xmpp openfire smack开发之Android客户端开发[3]

在上两篇文章中,我们依次介绍openfire部署以及smack常用API的使用,这一节中我们着力介绍如何基于asmack开发一个Android的客户端,本篇的重点在实践,讲解和原理环节,大家可以参考前两篇的文章 基于xmpp openfire smack开发之openfire介绍和部署[1] 基于xmpp openfire smack开发之smack类库介绍和使用[2]   1.源码结构介绍 activity包下存放一些android页面交互相关的控制程序,还有一个些公共帮助类 db包为sqli