码迷,mamicode.com
首页 > 其他好文 > 详细

OneDayOneClass----UIAlertView

时间:2015-04-14 23:23:47      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:api      

//  Created By 郭仔  2015年04月14日22:05:33


弹出警告框的类:

1. 最简单的用法

UIAlertView*alert = [[UIAlertView alloc]initWithTitle:@"提示" 

                                                  message:@"这是一个简单的警告框!" 

                                                  delegate:nil   

                                                  cancelButtonTitle:@"确定" 

                                                  otherButtonTitles:nil];  

[alert show];  

[alert release]; 
2.多了按钮:

UIAlertView*alert = [[UIAlertView alloc]initWithTitle:@"提示" 

                                                  message:@"请选择一个按钮:" 

                                                  delegate:nil   

                                                  cancelButtonTitle:@"取消" 

                                                  otherButtonTitles:@"按钮一", @"按钮二", @"按钮三",nil];  

[alert show];  

[alert release]; 
其他好多方法属性可以看API技术分享。。。。。


OneDayOneClass----UIAlertView

标签:api      

原文地址:http://blog.csdn.net/guoxianzhuang/article/details/45048603

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!