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

弹框控件 UIAlertView UIActionSheet

时间:2016-04-03 19:00:55      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

 

// 创建弹框

 


从底部弹出,一般用于危险操作

UIActionSheet *sheet = [[UIActionSheet alloc] initWithTitle:@"恭喜通关" delegate:nil cancelButtonTitle:@"取消" destructiveButtonTitle:@"确定" otherButtonTitles:@"其他", nil];

[sheet showInView:self.view];

从中间弹出

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"恭喜" message:@"通关了!!!!敬请期待!!!!" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"好的", nil];
alert.tag = 10;
[alert show];

弹框控件 UIAlertView UIActionSheet

标签:

原文地址:http://www.cnblogs.com/ERICSUN12/p/5350286.html

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