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

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

[objc]  view plain copy 在CODE上查看代码片 派生到我的代码片
  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 在CODE上查看代码片 派生到我的代码片
  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 在CODE上查看代码片 派生到我的代码片
  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 在CODE上查看代码片 派生到我的代码片
  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 在CODE上查看代码片 派生到我的代码片
  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,代码显得更加紧凑。
目录
相关文章
|
10天前
|
iOS开发 开发者
uniapp开发ios打包Error code = -5000 Error message: Error: certificate file(p12) import failed!报错问题如何解决
uniapp开发ios打包Error code = -5000 Error message: Error: certificate file(p12) import failed!报错问题如何解决
104 67
uniapp开发ios打包Error code = -5000 Error message: Error: certificate file(p12) import failed!报错问题如何解决
|
2月前
|
开发框架 前端开发 Android开发
安卓与iOS开发中的跨平台策略
在移动应用开发的战场上,安卓和iOS两大阵营各据一方。随着技术的演进,跨平台开发框架成为开发者的新宠,旨在实现一次编码、多平台部署的梦想。本文将探讨跨平台开发的优势与挑战,并分享实用的开发技巧,帮助开发者在安卓和iOS的世界中游刃有余。
|
1月前
|
iOS开发 开发者 MacOS
深入探索iOS开发中的SwiftUI框架
【10月更文挑战第21天】 本文将带领读者深入了解Apple最新推出的SwiftUI框架,这一革命性的用户界面构建工具为iOS开发者提供了一种声明式、高效且直观的方式来创建复杂的用户界面。通过分析SwiftUI的核心概念、主要特性以及在实际项目中的应用示例,我们将展示如何利用SwiftUI简化UI代码,提高开发效率,并保持应用程序的高性能和响应性。无论你是iOS开发的新手还是有经验的开发者,本文都将为你提供宝贵的见解和实用的指导。
127 66
|
21天前
|
存储 监控 API
app开发之安卓Android+苹果ios打包所有权限对应解释列表【长期更新】-以及默认打包自动添加权限列表和简化后的基本打包权限列表以uniapp为例-优雅草央千澈
app开发之安卓Android+苹果ios打包所有权限对应解释列表【长期更新】-以及默认打包自动添加权限列表和简化后的基本打包权限列表以uniapp为例-优雅草央千澈
|
1月前
|
开发框架 Android开发 iOS开发
安卓与iOS开发中的跨平台策略:一次编码,多平台部署
在移动应用开发的广阔天地中,安卓和iOS两大阵营各占一方。随着技术的发展,跨平台开发框架应运而生,它们承诺着“一次编码,到处运行”的便捷。本文将深入探讨跨平台开发的现状、挑战以及未来趋势,同时通过代码示例揭示跨平台工具的实际运用。
147 3
|
1月前
|
Java 调度 Android开发
安卓与iOS开发中的线程管理差异解析
在移动应用开发的广阔天地中,安卓和iOS两大平台各自拥有独特的魅力。如同东西方文化的差异,它们在处理多线程任务时也展现出不同的哲学。本文将带你穿梭于这两个平台之间,比较它们在线程管理上的核心理念、实现方式及性能考量,助你成为跨平台的编程高手。
|
2月前
|
存储 前端开发 Swift
探索iOS开发:从新手到专家的旅程
本文将带您领略iOS开发的奇妙之旅,从基础概念的理解到高级技巧的掌握,逐步深入iOS的世界。文章不仅分享技术知识,还鼓励读者在编程之路上保持好奇心和创新精神,实现个人成长与技术突破。
|
2月前
|
安全 IDE Swift
探索iOS开发之旅:从初学者到专家
在这篇文章中,我们将一起踏上iOS开发的旅程,从基础概念的理解到深入掌握核心技术。无论你是编程新手还是希望提升技能的开发者,这里都有你需要的指南和启示。我们将通过实际案例和代码示例,展示如何构建一个功能齐全的iOS应用。准备好了吗?让我们一起开始吧!
|
2月前
|
安全 Swift iOS开发
Swift 与 UIKit 在 iOS 应用界面开发中的关键技术和实践方法
本文深入探讨了 Swift 与 UIKit 在 iOS 应用界面开发中的关键技术和实践方法。Swift 以其简洁、高效和类型安全的特点,结合 UIKit 丰富的组件和功能,为开发者提供了强大的工具。文章从 Swift 的语法优势、类型安全、编程模型以及与 UIKit 的集成,到 UIKit 的主要组件和功能,再到构建界面的实践技巧和实际案例分析,全面介绍了如何利用这些技术创建高质量的用户界面。
46 2
|
2月前
|
vr&ar Android开发 iOS开发
安卓与iOS开发中的用户界面设计原则
【10月更文挑战第41天】探索移动应用开发的精髓,本文将深入分析安卓和iOS平台上用户界面设计的核心原则。通过比较两大操作系统的设计哲学,我们将揭示如何打造直观、易用且美观的应用程序界面。无论你是初学者还是资深开发者,这篇文章都将为你提供宝贵的见解和实用的技巧,帮助你在竞争激烈的应用市场中脱颖而出。

热门文章

最新文章