//UIAlertView的代理方法(创建UIAlertView之后,copy此代理方法即可)-
(BOOL)alertViewShouldEnableFirstOtherButton:(UIAlertView *)alertView{
//1.取出输入框中的文字 NSString *text .....
分类:
其他好文 时间:
2014-07-22 23:00:34
阅读次数:
330
UIAlertViewUIAlertView *alert = [[UIAlertView
alloc]initWithTitle:@"出错了"message:@"网络连接失败,请稍后重试"delegate:nil
cancelButtonTitle:@"好的" otherButtonTitles....
分类:
其他好文 时间:
2014-06-09 17:35:52
阅读次数:
217
学几个单词
dissolve
[d?'z?lv] vi.
溶解;解散
curl
[k??l]
vi. 卷曲
什么是模态视图?
比如UIAlertView,它就是一个模态视图。对于模态视图和普通视图最主要的区别就是模态视图显示的时候不能对其他视图进行操作。主要用来收集或显示一些信息。
思考:弹出警告框的时候,背景视图变暗不能操作,所以说警告框就是一个模...
分类:
其他好文 时间:
2014-06-05 11:45:57
阅读次数:
230
一、案例介绍:点击第一个按钮弹出提示框;点击第二个按钮弹出操作表。如图01,图02,图03图01图02图03二、案例步骤:1、选择Simple
View
Aplication,取名cq.32.警告框和操作表,如图042、Main.storyboard3、CQ32ViewController.h#im...
分类:
移动开发 时间:
2014-06-04 15:27:18
阅读次数:
381
UIAlertView,UIActionSheet都是系统的弹框
UIAlertView:创建方法- (id)initWithTitle:(NSString *)title message:(NSString
*)message delegate:(id /**/)delegate cance...
分类:
移动开发 时间:
2014-06-02 01:31:58
阅读次数:
314
UIAlertView
1.Title
获取或设置UIAlertView上的标题。
2.Message
获取或设置UIAlertView上的消息
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Title" message:@"message" delegate:self cancelBu...
分类:
其他好文 时间:
2014-05-25 16:37:56
阅读次数:
194
把图片存到相册中-(void)savaPicAction{
UIImageWriteToSavedPhotosAlbum(_imageView.image,nil,nil,nil); UIAlertView* alert
= [[UIAlertViewalloc]initWithTitle:nil....
分类:
移动开发 时间:
2014-05-18 20:16:47
阅读次数:
339
1UIAlertView类似于Android中的Dialog,简单用法如下:UIAlertView*alertView=[[UIAlertViewalloc]initWithTitle:@"Title"message:@"Messate"delegate:nilcancelButtonTitle:@"Cancle"otherButtonTitles:nil,nil];[alertViewshow];2UIActionSheet底部弹出的对话框,较常用,简..
分类:
移动开发 时间:
2014-05-14 16:24:55
阅读次数:
332
http://blog.csdn.net/developer_zhang/article/details/88258221.普通弹框 -
(void)viewDidLoad { [super viewDidLoad]; UIAlertView *alertView =
[[UIAlertView.....
分类:
其他好文 时间:
2014-05-09 20:20:20
阅读次数:
323
往UIAlertView中添加UITextField模拟登录框
分类:
移动开发 时间:
2014-04-28 07:03:08
阅读次数:
627