码迷,mamicode.com
首页 >  
搜索关键字:uialertcontroller    ( 175个结果
UIAlertController类--alert弹框3(文本对话框)
一、效果二、实现- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ [self alertTest3];}/*** 文本对话框*/- (void)alertTest3{ //1.创建UIAlertController.....
分类:其他好文   时间:2015-11-18 10:34:58    阅读次数:160
UIAlertController类--alert弹框2(Destructive “警示”)
一、效果二、实现- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ [self alertTest2];}/*** Destructive :“警示”样式*/- (void)alertTest2{ //1.创建UIA.....
分类:其他好文   时间:2015-11-18 10:25:53    阅读次数:144
IOS8以上的UIAlertView
在iOS8以前,我们都习惯性用UIAlertView去做提示框,iOS8以后,苹果提倡使用UIAlertController取代UIAlertView。#defineSYSTEM_VERSION[[UIDevicecurrentDevice].systemVersionfloatValue]if(SYSTEM_VERSION>=8.0){ UIAlertController*alertCtrl=[UIAlertControlleralertCon..
分类:移动开发   时间:2015-11-17 19:17:36    阅读次数:146
IOS UIAlertController 弹出框中添加视图(例如日期选择器等等)
UIDatePicker?*datePicker?=?[[UIDatePicker?alloc]?init];?datePicker.datePickerMode?=?UIDatePickerModeDate; UIAlertController?*alert?=?[UIAlertController?alertControllerWithTitle:@"\n\n\n...
分类:移动开发   时间:2015-11-12 13:48:52    阅读次数:2994
UIalertController日期控件
效果图思路是依靠 UIalertController的高度是由内容判定,修改其view 即可首先不需要改变该类的初始化(因为只是修改其view的界面)继承UIalertController的.h文件#import typedef void(^BlockDate)(id date);@interfac...
分类:其他好文   时间:2015-11-09 12:45:57    阅读次数:203
UIAlertController
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib.}-(void)touchesBegan:(NSSet *)tou.....
分类:其他好文   时间:2015-11-04 17:39:43    阅读次数:240
UIAlertController 弹框提醒
传统的alertView- (void)alertView{ UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"警告" message:@"你的操作时非法的,您要继续吗" delegate:nil cancelButtonTit...
分类:其他好文   时间:2015-11-03 11:54:56    阅读次数:200
iOS9使用提示框进行文本输入的正确实现方式
我在之前写过一篇博客《iOS9使用提示框的正确实现方式》,主要讲了如何使用UIAlertController替换UIAlertView进行提示框的实现。今天我们将会来实现一下在提示框中如何进行文本输入。该功能可以让用户进行密码确认等功能。 实现代码如下: #import "SecondViewController.h" #import "AppDelegate.h" @interface S...
分类:移动开发   时间:2015-10-31 23:07:25    阅读次数:884
UIAlertController 警告框
switch (button.tag) { case 101: { /* 按钮的类型 UIAlertActionStyleDefault = 0, UIAlertActionStyleCancel, UIAlertActionStyleDestructive */ //弹出警告框UIAlertCon...
分类:其他好文   时间:2015-10-28 22:30:10    阅读次数:295
iOS9使用提示框的正确实现方式
在从iOS8到iOS9的升级过程中,弹出提示框的方式有了很大的改变,在Xcode7 ,iOS9.0的SDK中,已经明确提示不再推荐使用UIAlertView,而只能使用UIAlertController,我们通过代码来演示一下。 我通过点击一个按钮,然后弹出提示框,代码示例如下: #import "ViewController.h" @interface ViewController () ...
分类:移动开发   时间:2015-10-28 15:40:10    阅读次数:238
175条   上一页 1 ... 9 10 11 12 13 ... 18 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!