“`
//背景点击方法
- (void)bgAction{UIActionSheet *bgActionImage = [[UIActionSheet alloc]initWithTitle:nil delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:nil otherButtonTitles:@"相册",@"拍照", nil...
分类:
其他好文 时间:
2016-05-13 04:27:27
阅读次数:
147
iOS 8的新特性之一就是让接口更有适应性、更灵活,因此许多视图控制器的实现方式发生了巨大的变化。
苹果官方现在并不提倡在iOS 8中使用UIAlertView,取而代之的是UIAlertController。
在iOS 8中,UIAlertController在功能上是和UIAlertView以及UIActionSheet相同的,UIAlertController以一种模块化替换的方...
分类:
其他好文 时间:
2016-05-12 20:30:21
阅读次数:
226
#import "LZJContactVC-2.h" @interface LZJContactVC_2 ()<UIActionSheetDelegate,UIAlertViewDelegate> @end @implementation LZJContactVC_2 - (void)viewDid ...
分类:
其他好文 时间:
2016-05-03 14:39:37
阅读次数:
176
IAlertController 同时替代了 UIAlertView 和 UIActionSheet,从系统层级上统一了 alert 的概念 —— 即以 modal 方式或 popover 方式展示。 UIAlertController 是 UIViewController 的子类,而非其先前的方式 ...
分类:
其他好文 时间:
2016-04-15 15:25:29
阅读次数:
160
UIAlertView 提示用户 帮助用户选择框 // UIAlertView *alterView = [[UIAlertView alloc] initWithTitle:@"警告" message:@"你还没把信息填完" delegate:nil cancelButtonTitle:@"can ...
分类:
其他好文 时间:
2016-04-09 10:46:31
阅读次数:
174
摘要:在iOS8之后,UIAlertView和UIActionSheet这两个控件被UIAlertController代替,但是这两个控件依然可以使用。这篇博客主要总结UIAlertView的常用方法。iOS9 UIAlertView不能用了 一、初始化方法 - (instancetype)init ...
分类:
移动开发 时间:
2016-04-05 15:37:43
阅读次数:
286
// 创建弹框 从底部弹出,一般用于危险操作 UIActionSheet *sheet = [[UIActionSheet alloc] initWithTitle:@"恭喜通关" delegate:nil cancelButtonTitle:@"取消" destructiveButtonTitle ...
分类:
其他好文 时间:
2016-04-03 19:00:55
阅读次数:
180
在 iOS8中,苹果提供了UIAlertController,以取代原有的 UIAlertView 和 UIActionSheet,以前的 UIAlertView是这样的: UIAlertView 有一个代理协议,可以执行按钮点击事件的回调,以及设置按钮是否可用等。 UIAlertControlle
分类:
其他好文 时间:
2016-03-21 01:30:52
阅读次数:
256
// 下面弹出 UIActionSheet *popup = [[UIActionSheet alloc] initWithTitle:nil delegate:cell cancelButtonTitle:nil destructiveButtonTitle:nil otherButtonTitl
分类:
其他好文 时间:
2016-02-26 17:10:53
阅读次数:
117
/load user image - (void)UesrImageClicked { UIActionSheet *sheet; // 判断是否支持相机 if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControlle
分类:
移动开发 时间:
2016-02-25 19:46:00
阅读次数:
230