美文网首页
iOS常用弹框

iOS常用弹框

作者: amoLink | 来源:发表于2017-04-19 16:50 被阅读946次

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

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

    如图1: 图1.png

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

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

    如图2:


    图2.png

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

    相关文章

      网友评论

          本文标题:iOS常用弹框

          本文链接:https://www.haomeiwen.com/subject/tfrhzttx.html