博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS9使用提示框的正确实现方式
阅读量:6659 次
发布时间:2019-06-25

本文共 2817 字,大约阅读时间需要 9 分钟。

hot3.png

在从iOS8到iOS9的升级过程中,弹出提示框的方式有了很大的改变,在Xcode7 ,iOS9.0的SDK中,已经明确提示不再推荐使用UIAlertView,而只能使用UIAlertController,我们通过代码来演示一下。

我通过点击一个按钮,然后弹出提示框,代码示例如下:

#import "ViewController.h"@interface ViewController ()@property(strong,nonatomic) UIButton *button;@end@implementation ViewController- (void)viewDidLoad {  [super viewDidLoad];    self.button = [[UIButton alloc] initWithFrame:CGRectMake(0, 100, [[UIScreen mainScreen] bounds].size.width, 20)];  [self.button setTitle:@"跳转" forState:UIControlStateNormal];  [self.button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];  [self.view addSubview:self.button];    [self.button addTarget:self action:@selector(clickMe:) forControlEvents:UIControlEventTouchUpInside];  }-(void)clickMe:(id)sender{      UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示" message:@"按钮被点击了" delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];    [alert show];  }@end

编写上述代码时,会有下列的警告提示:

“‘UIAlertView’ is deprecated:first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead”.

说明UIAlertView首先在iOS9中被弃用(不推荐)使用。让我们去用UIAlertController。但是运行程序,发现代码还是可以成功运行,不会出现crash。

     但是在实际的工程开发中,我们有这样一个“潜规则”:要把每一个警告(warning)当做错误(error)。所以为了顺应苹果的潮流,我们来解决这个warning,使用UIAlertController来解决这个问题。代码如下:

#import "ViewController.h"@interface ViewController ()@property(strong,nonatomic) UIButton *button;@end@implementation ViewController- (void)viewDidLoad {  [super viewDidLoad];    self.button = [[UIButton alloc] initWithFrame:CGRectMake(0, 100, [[UIScreen mainScreen] bounds].size.width, 20)];  [self.button setTitle:@"跳转" forState:UIControlStateNormal];  [self.button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];  [self.view addSubview:self.button];    [self.button addTarget:self action:@selector(clickMe:) forControlEvents:UIControlEventTouchUpInside];  }-(void)clickMe:(id)sender{    //初始化提示框;  UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"按钮被点击了" preferredStyle:  UIAlertControllerStyleAlert];    [alert addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {    //点击按钮的响应事件;  }]];    //弹出提示框;  [self presentViewController:alert animated:true completion:nil];    }@end

这样,代码就不会有警告了。

程序运行后的效果同上。  其中preferredStyle这个参数还有另一个选择:UIAlertControllerStyleActionSheet。选择这个枚举类型后,实现效果

发现这个提示框是从底部弹出的。是不是很简单呢?通过查看代码还可以发现,在提示框中的按钮响应不再需要delegate委托来实现了。直接使用addAction就可以在一个block中实现按钮点击,非常方便。

     总结,可以发现这里我们呈现一个对话框使用了presentViewController这个方法,这个方法是呈现模态视图(Modal View)的方法,也就是是说,此时的提示框是一个模态视图。当我们在进行界面跳转的时候,也一般使用这个方法,此时呈现的第二个ViewController也是一个模态视图。我们可以把模态视图理解为一个浮动在原先视图上的一个临时性的视图或者界面,当在模态视图中调用dismissViewController方法时,会返回上一个界面,并销毁这个模态视图对象。

转载于:https://my.oschina.net/u/2562364/blog/634544

你可能感兴趣的文章
学点 C 语言(23): 数据类型 - 给指针分配内存
查看>>
tpcc_mysql性能测试
查看>>
15、Cocos2dx 3.0游戏开发找小三之Sprite:每个精灵都是上辈子折翼的天使
查看>>
springframe源码导入到Intellij idea
查看>>
PHP在线打开word,excel文件怎么实现?
查看>>
myFocus 各种JS焦点图库
查看>>
iOS 中的反射
查看>>
智和信通SugarNMS工业交换机网管解决方案
查看>>
CSS总结
查看>>
python学习------实现文件md5校验
查看>>
NFS服务基本配置及使用
查看>>
马哥2016全新Linux+Python高端运维班-Linux基础命令文件管理类及目录创建
查看>>
Cocos2D-X系列之RPG横版过关游戏完整版实例3
查看>>
如何清理Xcode上多余的Provisioning Profile证书?
查看>>
Varnish,Nginx搭建缓存服务器
查看>>
mybatis在xml文件中处理大于号小于号的方法
查看>>
Linux输入命令出现bash:.....:command not found的解决办法
查看>>
通过inputSplit分片size控制map数目
查看>>
我的友情链接
查看>>
Apache配置调优
查看>>