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
一:效果图效果描述:点击相框,将手机摄像头拍摄的图片或者本地图片设置为我们定义的头像功能控件:UIImageView , UIAlertController ,UITapGestureRecognizer ,UIImagePickerController首次运行的时候会提醒是否允许程序访问手机相册,...
分类:
其他好文 时间:
2015-12-16 21:08:08
阅读次数:
295
if (IOS8) { UIAlertController *alertController=[UIAlertController alertControllerWithTitle:CustomLocalizedString(@"SetIp", nil) message:@""...
分类:
其他好文 时间:
2015-12-14 14:04:06
阅读次数:
198
在iOS8中,UIAlertView、UIActionSheet (以及它们各自的 delegate protocols) 已经被废弃了, 所以,如果想实现操作表单 (action sheet) 或者警告视图 (alert) ,就要用到UIAlertController来替代和实现 UIAlertV...
分类:
移动开发 时间:
2015-12-09 07:09:03
阅读次数:
250
UIActionSheet在iOS8.3之后已不建议使用。 可以使用UIAlertController+UIAlertControllerStyleActionSheet获得同样的效果创建UIActionSheet UIActionSheet * as = [[UIActionSheet al...
分类:
移动开发 时间:
2015-11-24 06:15:56
阅读次数:
175
原文转自:在iOS 8中使用UIAlertController感谢作者分享,自我学习之用iOS 8的新特性之一就是让接口更有适应性、更灵活,因此许多视图控制器的实现方式发生了巨大的变化。全新的UIPresentationController在实现视图控制器间的过渡动画效果和自适应设备尺寸变化效果(比...
分类:
移动开发 时间:
2015-11-20 12:19:02
阅读次数:
202
IOS的方法经常都有更迭,以前弹出框使用 AlertView,现在使用UIAlertControllerAlertView的宏定义#define showMessage(__MESSAGE__) \UIAlertView *alertView_ = [[UIAlertView alloc] init...
分类:
其他好文 时间:
2015-11-20 12:13:44
阅读次数:
573
introduced=2.0, deprecated=9.0 ios9已经废弃 建议使用UIAlertController创建AlertViewlet alertView = UIAlertView()alertView.title = "温馨提示"alertView.message = "UIAl...
分类:
其他好文 时间:
2015-11-19 12:46:41
阅读次数:
121
一、效果二、代码实现- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ [self sheetTest1];}/**注意:不能在上拉菜单中添加文本框 如果强行添加了文本框,会报运行时错误: reason: 'Tex...
分类:
其他好文 时间:
2015-11-18 16:27:37
阅读次数:
143