弹框控件 UIAlertView UIActionSheet
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了弹框控件 UIAlertView UIActionSheet相关的知识,希望对你有一定的参考价值。
// 创建弹框
从底部弹出,一般用于危险操作
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的主要内容,如果未能解决你的问题,请参考以下文章