码迷,mamicode.com
首页 >  
搜索关键字:uialertview    ( 310个结果
IOS 开发 弹框 UIAlertView 与UIAlertController
//View 里面的一个按钮- (IBAction)showAlert:(id)sender { //ios8 之前 UIAlertView * alert=[[UIAlertView alloc] initWithTitle:@"你好,波...
分类:移动开发   时间:2016-01-02 01:01:07    阅读次数:387
iOS8开发之iOS8的UIAlertController
在iOS8之前用UIActionSheet和UIAlertView来提供按钮选择和提示性信息,比如UIActionSheet可以这样写: UIActionSheet *actionSheet = [[UIActionSheet alloc] ...
分类:移动开发   时间:2015-12-26 18:30:34    阅读次数:201
正则表达式判断手机号
//正则表达式判断手机号格式- (BOOL)checkTel:(NSString *)str{ if ([str length] == 0) { UIAlertView* alert = [[UIAlertView alloc] initWithTitle:NSLocalizedStrin...
分类:移动开发   时间:2015-12-25 19:08:03    阅读次数:196
IOS UIAlertController 弹框 (ios 9.0 后代替了UIAlertView弹框 和 UIActionSheet下弹框)
在IOS 9.0 后 苹果官方宣布不再或不推荐使用UIAlertView 和 UIActionSheet 由UIAlertController进行代替两者 用控制器将两者合二为一 很简单 方便 下面就是关于UIAlertView的常用方法#import "RootViewController.h"@...
分类:移动开发   时间:2015-12-23 10:38:06    阅读次数:194
【代码笔记】带输入框的UIAlertView
一,效果图。二,代码。//点击任何处,弹出输入框-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ UIAlertView *dialog = [[UIAlertView alloc] initWithTit...
分类:其他好文   时间:2015-12-23 10:37:20    阅读次数:112
IOS开发之 ---- iOS8中提示框的使用UIAlertController(UIAlertView和UIActionSheet二合一)
群号:49690168转:http://blog.csdn.net/liangliang103377/article/details/40078015iOS8推出了几个新的“controller”,主要是把类似之前的UIAlertView变成了UIAlertController,这不经意的改变,貌似...
分类:移动开发   时间:2015-12-21 15:50:57    阅读次数:223
iOS8中提示框的使用UIAlertController(UIAlertView和UIActionSheet二合一)
iOS8推出了几个新的“controller”,主要是把类似之前的UIAlertView变成了UIAlertController,这不经意的改变,貌似把我之前理解的“controller”一下子推翻了~但是也无所谓,有新东西不怕,学会使用了就行。接下来会探讨一下这些个新的Controller。- (...
分类:移动开发   时间:2015-12-19 14:58:14    阅读次数:271
UIAlertController的一些简单实用方法
1.UIAlertController类似UIAlertView的最基本的使用方法。。直接上代码-(void)alertViewcontrol{ UIAlertController *alertControl = [UIAlertController alertControllerWithTitl....
分类:其他好文   时间:2015-12-18 13:04:48    阅读次数:172
UIAlertView与UIActionSheet
1.UIAlertView(警告框)1.1 创建警告框,设置样式- (IBAction)alertView:(UIButton *)sender {//创建button按钮 //创建警告框的实例 //UIAlertView *alert = [[UIAlertView alloc]initWit.....
分类:其他好文   时间:2015-12-16 17:13:15    阅读次数:156
iOS 8 中 UIAlertView 和 UIActionSheet 河里去了?
iOS 8 中 UIAlertView 和 UIActionSheet 河里去了?...
分类:移动开发   时间:2015-12-11 11:26:24    阅读次数:168
310条   上一页 1 ... 7 8 9 10 11 ... 31 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!