UIAlertView 和 UIAlertController

UIAlertView及UIActionSheet在ios8中被放弃

其功能将完全由UIAlertController代替:

1.Alert用法

UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"This is Title"
                                                                   message:@"This is message"
                                                            preferredStyle:UIAlertControllerStyleAlert];
    [alert addAction:[UIAlertAction actionWithTitle:@"Action 1 (Default Style)"
                                              style:UIAlertActionStyleDefault
                                            handler:^(UIAlertAction *action) {
                                                NSLog(@"Action 1 Handler Called");
                                            }]];

    [alert addAction:[UIAlertAction actionWithTitle:@"Action 2 (Cancel Style)"
                                              style:UIAlertActionStyleCancel
                                            handler:^(UIAlertAction *action) {
                                                NSLog(@"Action 2 Handler Called");
                                            }]];

    [alert addAction:[UIAlertAction actionWithTitle:@"Action 3 (Destructive Style)"
                                              style:UIAlertActionStyleDestructive
                                            handler:^(UIAlertAction *action) {
                                                NSLog(@"Action 3 Handler Called");
                                            }]];

    [alert addTextFieldWithConfigurationHandler:^(UITextField *textField) {

        UITextField * tf = [[UITextField alloc]initWithFrame:CGRectMake(0, 0, 80, 30)];
    }];
    [self presentViewController:alert animated:YES completion:nil];

2,actionsheet用法

UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nilpreferredStyle:UIAlertControllerStyleActionSheet];

    [alertController addAction:[UIAlertAction actionWithTitle:@"111"
                                                        style:UIAlertActionStyleDefault
                                                      handler:^(UIAlertAction *action) {
                                                          NSLog(@"111");
                                                      }]];
    [alertController addAction:[UIAlertAction actionWithTitle:@"222"
                                                        style:UIAlertActionStyleCancel
                                                      handler:^(UIAlertAction *action) {
                                                          NSLog(@"222");
                                                      }]];
    [self presentViewController:alertController animated:YES completion:nil];

版本判断语句

#define iOS(version) (([[[UIDevice currentDevice] systemVersion] intValue] >= version)?1:0)

可进行判断添加alertController或是aletView和actionsheet

3.新的问题,当在ios8下做好判断之后,返回ios7或ios6运行xcode,报错-------

原因:UIAlertController只在ios8下的框架里由此文件,ios7及以下版本没有,但编译的时候还是会进行编译(虽然运行时不走这部分代码)

解决方法:编译时进行判断,只有在ios8SDK下编译此部分

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 80000

"alertcontroller相关代码"

#endif

重新运行xcode,ok,可以正常运行了.

源博文:http://blog.csdn.net/shang1219178163/article/details/39519927

时间: 2024-10-06 07:31:19

UIAlertView 和 UIAlertController的相关文章

IOS开发之UIAlertView与UIAlertController的详尽用法说明

本文将从四个方面对IOS开发中UIAlertView与UIAlertController的用法进行讲解: 一.UIAlertView与UIAlertController是什么东东? 二.我们为什么要用UIAlertView或UIAlertController? 三.如何使用UIAlertView和UIAlertController? 四.阅读提醒. 一.UIAlertView与UIAlertController是什么东东? 一句话,在所有移动应用中,出现的提示窗一般都由UIAlertView或U

IOS 开发 弹框 UIAlertView 与UIAlertController

//View 里面的一个按钮 - (IBAction)showAlert:(id)sender { //ios8 之前 UIAlertView * alert=[[UIAlertView alloc] initWithTitle:@"你好,波多老师" message:@"听说您??有新戏要上映了" delegate:nil cancelButtonTitle:@"我来贡献票房来了" otherButtonTitles:nil, nil ]; [a

从 UIAlertView 到 UIAlertController

在 iOS8中,苹果提供了UIAlertController,以取代原有的 UIAlertView 和 UIActionSheet,以前的 UIAlertView是这样的: 1 UIAlertView *alertView = [[UIAlertView alloc] 2 initWithTitle:@"DefaultStyle" 3 message:@"the default alert view style" 4 delegate:self 5 cancelBu

提示窗UIAlertView与UIAlertController的用法(持续更新中)

一般在if判断中加入 1.第一种基础型 全都在xxx.m功能文件中编写 UIAlertView(基础版): 1 UIAlertView *WXinstall=[[UIAlertView alloc]initWithTitle:@"提示框" message:@"提示信息" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];//一般在if判断中加

浅谈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) { //

UIAlertController 弹框提醒

传统的alertView - (void)alertView { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"警告" message:@"你的操作时非法的,您要继续吗" delegate:nil cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil]; alert.alertViewStyle = UIA

iOS8新特性(1)——UIAlertController

一.iOS8介绍 iOS8 新特性,主要是UI上进行了统一 1.UIAlertController 2.UIPresentaionController:管理所有通过modal出来的控制器(看笔记) 3.UIPopoverPresentationController 4.SizeClass + Autolayout 5.App Extension 应用扩展 6.Core Image(iOS 5开始就有了,滤镜美图秀秀型 ) 二.UIAlertController 1.以往我们使用的时候,都是用的 

B12-UIAlertController(NS_CLASS_AVAILABLE_IOS(8_0))。

在IOS8之后,UIAlertController替代了UIActionSheet和UIAlertView.UIAlertController的使用主要分三个步骤: 一.初始化 UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"警告" message:@"啊哈哈哈哈" preferredStyle:UIAlertControllerStyleAlert]; // type

iOS开发 - UIAlertController 弹框提醒

传统的alertView - (void)alertView { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"警告" message:@"你的操作时非法的,您要继续吗" delegate:nil cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil]; alert.alertViewStyle = UIA