在iOS8以前,我们都习惯性用UIAlertView去做提示框,iOS8以后,苹果提倡使用UIAlertController取代UIAlertView。#defineSYSTEM_VERSION[[UIDevicecurrentDevice].systemVersionfloatValue]if(SYSTEM_VERSION>=8.0){
UIAlertController*alertCtrl=[UIAlertControlleralertCon..
分类:
移动开发 时间:
2015-11-17 19:17:36
阅读次数:
146
1.Title获取或设置UIAlertView上的标题。2.Message获取或设置UIAlertView上的消息1 UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Title" message:@"message" del...
分类:
其他好文 时间:
2015-11-14 16:31:56
阅读次数:
210
*ios8之前创建弹框的方法:UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"提示" message:@"输入的数字不合理" delegate:nil cancelButtonTitle:@"取消" otherButtonTi...
分类:
其他好文 时间:
2015-11-05 22:28:55
阅读次数:
239
传统的alertView- (void)alertView{ UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"警告" message:@"你的操作时非法的,您要继续吗" delegate:nil cancelButtonTit...
分类:
其他好文 时间:
2015-11-03 11:54:56
阅读次数:
200
iOS 开发中,UIAlertView 经常用到。这里记录下曾用到的点击跳转事件。UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示" ...
分类:
移动开发 时间:
2015-11-01 17:52:32
阅读次数:
1099
我在之前写过一篇博客《iOS9使用提示框的正确实现方式》,主要讲了如何使用UIAlertController替换UIAlertView进行提示框的实现。今天我们将会来实现一下在提示框中如何进行文本输入。该功能可以让用户进行密码确认等功能。
实现代码如下:
#import "SecondViewController.h"
#import "AppDelegate.h"
@interface S...
分类:
移动开发 时间:
2015-10-31 23:07:25
阅读次数:
884
在从iOS8到iOS9的升级过程中,弹出提示框的方式有了很大的改变,在Xcode7 ,iOS9.0的SDK中,已经明确提示不再推荐使用UIAlertView,而只能使用UIAlertController,我们通过代码来演示一下。
我通过点击一个按钮,然后弹出提示框,代码示例如下:
#import "ViewController.h"
@interface ViewController ()
...
分类:
移动开发 时间:
2015-10-28 15:40:10
阅读次数:
238
Important:?UIAlertView?is deprecated in iOS 8. (Note that?UIAlertViewDelegate?is also deprecated.) To create and manage alerts in iOS 8 and later, instead use?UIAlertController?with a?prefe...
分类:
编程语言 时间:
2015-10-22 00:25:24
阅读次数:
233
UIAlertView、UIActionSheet、UIAlertController
分类:
移动开发 时间:
2015-10-18 22:55:32
阅读次数:
226