iOS常用弹框

2017-04-19  本文已影响946人  amoLink

1、系统弹框-底部弹框 UIActionSheet

处理用户非常危险的操作,比如注销系统等。
UIActionSheet *sheet = [[UIActionSheet alloc] 
                          initWithTitle:@“确定要注销?”
                               delegate:self 
                      cancelButtonTitle:@“取消” 
                 destructiveButtonTitle:@“确定” 
                      otherButtonTitles:nil, nil];
[sheet showInView:self.view];

如图1: 图1.png

2、系统弹框-中间弹框 UIAlertView

处理一般提醒,如果非必须,尽量不用,影响友好性。
UIAlertView *alert = [[UIAlertView alloc] 
                             initWithTitle:@“警告” 
                                   message:@“账号或者密码错误” 
                                  delegate:nil
                         cancelButtonTitle:@“好的” 
                         otherButtonTitles:nil, nil];
[alert show];

如图2:


图2.png

在登陆界面,输入账号密码,如果有一项输入错误,弹框提示,必须点击“好的”才能重新输入

上一篇 下一篇

猜你喜欢

热点阅读