一、初始化方法- (instancetype)initWithTitle:(NSString*)title delegate:(id)delegate cancelButtonTitle:(NSString*)cancelButtonTitle destructiveButtonTitle:(NSS...
分类:
移动开发 时间:
2015-08-08 16:22:10
阅读次数:
172
#import @interface ViewController : UIViewController{ UILabel *lable;}@end#import "ViewController.h"@interface ViewController ()@end@implementation V....
分类:
其他好文 时间:
2015-08-03 14:25:16
阅读次数:
114
1、前言iOS8添加UIAlertController代替UIAlertView、UIActionSheet的使用。本文在不使用UIAlertController的情况下,用最简单的方法让UIAlertView、UIActionSheet兼容iOS8.2、UIAlertViewiOS8下,假设UIA...
分类:
移动开发 时间:
2015-07-29 13:43:13
阅读次数:
148
一、新建工程 二、拖控件,创建映射三、在.h中加入delegate@interface ViewController : UIViewController复制代码四、实现按钮事件-(IBAction)chooseImage:(id)sender { UIActionSheet *sheet; ...
分类:
移动开发 时间:
2015-07-28 17:27:20
阅读次数:
146
由于最近项目需要制作一个可定制的底部弹窗效果,因此研究了一下UIActionSheet,打算重写一个自定义的弹窗,在写demo的时候出于偷懒的原因,直接在新建项目的- (void)viewDidLoad {}中写入了窗口切换测试代码,结果在调试的时候就出现了如下错误信息:Terminating ap...
分类:
移动开发 时间:
2015-07-16 16:09:13
阅读次数:
128
//// ViewController.h// UI5_UIAlertView与UIActionSheet//// Created by zhangxueming on 15/7/7.// Copyright (c) 2015年 zhangxueming. All rights reserv...
分类:
其他好文 时间:
2015-07-11 16:30:56
阅读次数:
143
在iOS8的UIActionSheet被废弃,我们在实现UIActionsheet时会选择用UIAlertController来实现。本篇博文将会实现UIAlertView实现UIactionSheet效果。...
分类:
编程语言 时间:
2015-07-11 09:18:12
阅读次数:
279
##UIAlertView和UIActionSheet```objc// cancelButton buttonIndex == 1// destructiveButton buttonIndex ==0UIActionSheet *sheet =[[UIActionSheet alloc]init...
分类:
其他好文 时间:
2015-07-11 01:04:53
阅读次数:
148
##UIAlertView和UIActionSheet```objc// cancelButton buttonIndex == 1// destructiveButton buttonIndex ==0 UIActionSheet *sheet =[[UIActionSheet alloc]ini...
分类:
其他好文 时间:
2015-07-11 00:55:59
阅读次数:
116
一、UIAlertViewUIAlertView * alert=[[UIAlertView alloc]initWithTitle:@"title" message:@"message" delegate:self cancelButtonTitle:@"取消" otherButtonTitles...
分类:
其他好文 时间:
2015-07-10 13:09:56
阅读次数:
96