//View 里面的一个按钮- (IBAction)showAlert:(id)sender { //ios8 之前 UIAlertView * alert=[[UIAlertView alloc] initWithTitle:@"你好,波...
分类:
移动开发 时间:
2016-01-02 01:01:07
阅读次数:
387
在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 9.0 后 苹果官方宣布不再或不推荐使用UIAlertView 和 UIActionSheet 由UIAlertController进行代替两者 用控制器将两者合二为一 很简单 方便 下面就是关于UIAlertView的常用方法#import "RootViewController.h"@...
分类:
移动开发 时间:
2015-12-23 10:38:06
阅读次数:
194
一,效果图。二,代码。//点击任何处,弹出输入框-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ UIAlertView *dialog = [[UIAlertView alloc] initWithTit...
分类:
其他好文 时间:
2015-12-23 10:37:20
阅读次数:
112
群号:49690168转:http://blog.csdn.net/liangliang103377/article/details/40078015iOS8推出了几个新的“controller”,主要是把类似之前的UIAlertView变成了UIAlertController,这不经意的改变,貌似...
分类:
移动开发 时间:
2015-12-21 15:50:57
阅读次数:
223
iOS8推出了几个新的“controller”,主要是把类似之前的UIAlertView变成了UIAlertController,这不经意的改变,貌似把我之前理解的“controller”一下子推翻了~但是也无所谓,有新东西不怕,学会使用了就行。接下来会探讨一下这些个新的Controller。- (...
分类:
移动开发 时间:
2015-12-19 14:58:14
阅读次数:
271
1.UIAlertController类似UIAlertView的最基本的使用方法。。直接上代码-(void)alertViewcontrol{ UIAlertController *alertControl = [UIAlertController alertControllerWithTitl....
分类:
其他好文 时间:
2015-12-18 13:04:48
阅读次数:
172
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 河里去了?...
分类:
移动开发 时间:
2015-12-11 11:26:24
阅读次数:
168