IOS8 : UIAlertController
UIAlertController 和 UIAlertAction 用法:
1. 最简单的提醒视图:
这里我们实现一个最简单的提醒视图,包含1个标题,1行信息,1个按键,按下按键后,什么都不发生:
- - (IBAction)doAlert:(id)sender {
- // 准备初始化配置参数
- NSString *title = @"Alert Button Selected";
- NSString *message = @"I need your attention NOW!";
- NSString *okButtonTitle = @"OK";
- // 初始化
- UIAlertController *alertDialog = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleAlert];
- // 创建操作
- UIAlertAction *okAction = [UIAlertAction actionWithTitle:okButtonTitle style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
- // 操作具体内容
- // Nothing to do.
- }];
- // 添加操作
- [alertDialog addAction:okAction];
- // 呈现警告视图
- [self presentViewController:alertDialog animated:YES completion:nil];
- }
进入程序后,点击“Alert Me!”按钮可触发这个提醒框,如图所示:
- - (IBAction)doMultiButtonAlert:(id)sender {
- // 准备初始化配置参数
- NSString *title = @"Alert Button Selected";
- NSString *message = @"I need your attention NOW!";
- NSString *okButtonTitle = @"OK";
- NSString *neverButtonTitle = @"Never";
- NSString *laterButtonTitle = @"Maybe Later";
- // 初始化
- UIAlertController *alertDialog = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleAlert];
- // 分别3个创建操作
- UIAlertAction *laterAction = [UIAlertAction actionWithTitle:laterButtonTitle style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
- // 普通按键
- self.userOutput.text = @"Clicked 'Maybe Later'";
- }];
- UIAlertAction *neverAction = [UIAlertAction actionWithTitle:neverButtonTitle style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
- // 红色按键
- self.userOutput.text = @"Clicked 'Never'";
- }];
- UIAlertAction *okAction = [UIAlertAction actionWithTitle:okButtonTitle style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
- // 取消按键
- self.userOutput.text = @"Clicked 'OK'";
- }];
- // 添加操作(顺序就是呈现的上下顺序)
- [alertDialog addAction:laterAction];
- [alertDialog addAction:neverAction];
- [alertDialog addAction:okAction];
- // 呈现警告视图
- [self presentViewController:alertDialog animated:YES completion:nil];
- }
3个按键分别代表了3种不同类型的按键,分别是默认按键(普通)、销毁按键(红色)和取消按键(粗体)。从代码看其实就是在上一个的基础上加了3个 UIAlertAction 而已,然后分别设置不同的 style,效果如下:
- - (IBAction)doAlertInput:(id)sender {
- // 准备初始化配置参数
- NSString *title = @"Email Address";
- NSString *message = @"Please enter your your email address:";
- NSString *okButtonTitle = @"OK";
- // 初始化
- UIAlertController *alertDialog = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleAlert];
- // 创建文本框
- [alertDialog addTextFieldWithConfigurationHandler:^(UITextField *textField){
- textField.placeholder = @"Your Email";
- textField.secureTextEntry = NO;
- }];
- // 创建操作
- UIAlertAction *okAction = [UIAlertAction actionWithTitle:okButtonTitle style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
- // 读取文本框的值显示出来
- UITextField *userEmail = alertDialog.textFields.firstObject;
- self.userOutput.text = userEmail.text;
- }];
- // 添加操作(顺序就是呈现的上下顺序)
- [alertDialog addAction:okAction];
- // 呈现警告视图
- [self presentViewController:alertDialog animated:YES completion:nil];
- }
在创建操作前先创建文本框,以便后面的按键可以操作文本框内容。创建文本框也只是用了一个简单的方法而已,想创建更多文本框就再使用多次这个方法即可,程序效果如下:
4. 提醒图表
- - (IBAction)doActionSheet:(id)sender {
- // 准备初始化配置参数
- NSString *title = @"Alert Button Selected";
- NSString *message = @"I need your attention NOW!";
- NSString *okButtonTitle = @"OK";
- NSString *neverButtonTitle = @"Never";
- NSString *laterButtonTitle = @"Maybe Later";
- // 初始化
- UIAlertController *alertDialog = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleActionSheet];
- // 分别3个创建操作
- UIAlertAction *laterAction = [UIAlertAction actionWithTitle:laterButtonTitle style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
- // 普通按键
- self.userOutput.text = @"Clicked 'Maybe Later'";
- }];
- UIAlertAction *neverAction = [UIAlertAction actionWithTitle:neverButtonTitle style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
- // 红色按键
- self.userOutput.text = @"Clicked 'Never'";
- }];
- UIAlertAction *okAction = [UIAlertAction actionWithTitle:okButtonTitle style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
- // 取消按键
- self.userOutput.text = @"Clicked 'OK'";
- }];
- // 添加操作(顺序就是呈现的上下顺序)
- [alertDialog addAction:laterAction];
- [alertDialog addAction:neverAction];
- [alertDialog addAction:okAction];
- // 呈现警告视图
- [self presentViewController:alertDialog animated:YES completion:nil];
- }
效果如图:
IOS8 : UIAlertController的更多相关文章
- IOS8 UIAlertController 弹框
本文转载至 http://blog.csdn.net/jinkaiouyang/article/details/35551769 IOS8中,Apple将UIActionSheet和UIAlertVi ...
- iOS8 UIAlertController弹出框中添加视图(例如日期选择器等等)
UIDatePicker *datePicker = [[UIDatePicker alloc] init]; datePicker.datePickerMode = UIDatePickerMode ...
- 升级IOS8游戏上传自定义头像功能失效的问题
为了支持arm64,之前已经折腾了很久,昨晚打包准备提交苹果审核时,测试那边的同事反馈说游戏上传自定义头像功能不可用了. 游戏上传自定义功能的简介:卡牌游戏最初是<比武招亲>中有一个充VI ...
- UIAlertController custom font, size, color
本文转载至 http://stackoverflow.com/questions/26460706/uialertcontroller-custom-font-size-color up vote2d ...
- iOS改变UIAlertView、UIActionSheet、UIAlertController系统字体颜色
废话不多说,直接上代码,效果是最好的说服力 1.改变UIAlertView字体颜色 [UIView appearance].tintColor = [UIColor greenColor]; 个人还是 ...
- iOS开发之UIAlertController的适配
在iOS8中,只能用UIAlertController.而原来的UIAlertView及UIActionSheet已经被抛弃掉了.但是如果一台iOS 7 的手机运行到有UIAlertControlle ...
- UIActionSheet 修改字体颜色
-(void)willPresentActionSheet:(UIActionSheet *)actionSheet { SEL selector = NSSelectorFromString(@&q ...
- UIAlertViewController+TextField 输入框
if (IOS8) { UIAlertController *alertController=[UIAlertController alertControllerWithTitle:CustomLoc ...
- runtime查找 UIAlertAction 的key 及 UIActionSheet 设置字体颜色
修改不了颜色了 结果发现kvo 的key 不对 哎 直接上代码 设置正确的属性找到对应的key 还以为iOS 11改变了方法 unsigned int count; Ivar *ivars = c ...
随机推荐
- 用简单的http抓包来实现微信公众网页如何模拟登录
一.准备工具: 系统:XP 浏览器:IE8 抓包工具:HttpWatch(它可以查看url请求的数据包) 二.抓包思路: 浏览器上的任何获取数据的方式都符合http协议的请求,只要发送符合要求的数据就 ...
- poj2528 Mayor's posters(线段树区间覆盖)
Mayor's posters Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 50888 Accepted: 14737 ...
- p1349星屑幻想
这道题的原题目我也不知道是什么. 大致题意是有一个图,有些点的权值已确定,要求你确定其他点的权值使所有边两个点的权值的xor和最小,输出所有点的最终权值,输出有spj: 解法是最小割,由于题目要求的使 ...
- HDU 1813 Escape from Tetris
TMDTMD IDA*没跑了.什么是IDA*? 就是迭代深搜+A*估个价. 然而为什么调了一天? n<=2的时候我输出了东西.... 看了一天. #include<iostream> ...
- 今日头条视频Url嗅探
1.打开http://toutiao.com/a6309254755004875010/,查看网页源代码获取videoid = 0425d8f0c2bb425d9361c0eb2eeb4f16 2.拼 ...
- Myeclipse SVN 修改用户名和密码
转自:http://blog.csdn.net/chow__zh/article/details/7731497 解决方案: 在Eclipse使用SVN的过程中大多数人往往习惯把访问SVN的用户名密码 ...
- KMP算法之查找模式串在源串中出现的次数
问题描述: 给定两个字符串T, P.查找字符串P在字符串T中出现的次数. 解决方法: 典型的KMP算法的题目,在此使用的KMP算法为算法导论上介绍的算法.下一篇文章将详细介绍KMP算法的计算过程. 题 ...
- windows apache 开启 GZIP
从服务端优化来说,通过对服务端做压缩配置可以大大减小文本文件的体积,从而使加载文本的速度成倍的加快.目前比较通用的压缩方法是启用gzip压缩.它 会把浏览器请求的页面,以及页面中引用的静态资源以压缩包 ...
- C++第二天学习
回顾: 1.第一个C++程序 头文件 输入输出 名字空间 using namespace std; 扩展名 编译方式 g++ 2.名字空间 3.结构.联合.枚举 4.字符串 标准库提供的表示字符串的类 ...
- C++中lower_bound函数和upper_bound函数
STL中关于二分查找的函数有三个lower_bound .upper_bound .binary_search .这三个函数都运用于有序区间(当然这也是运用二分查找的前提),下面记录一下这两个函数. ...