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

UIAlertView

时间:2014-07-10 18:39:45      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:alertview

  1. 当AlertView只有一个按钮时,将取消按钮的文字设置成“确定”

        UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"例子" message:@"消息" delegate:self cancelButtonTitle:@"确定" otherButtonTitles: nil];


  2. 如果只有两个按钮时,将otherButton的第一个按钮设置为“确定”

    UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"例子" message:@"消息" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];


3. 如果只是两个按钮,会横向排列,超过两个按钮会纵向排列

4. alertView有4中类型

    alert.alertViewStyle = UIAlertViewStyleDefault;

    alert.alertViewStyle = UIAlertViewStyleLoginAndPasswordInput;

    alert.alertViewStyle = UIAlertViewStylePlainTextInput;

    alert.alertViewStyle = UIAlertViewStyleSecureTextInput;

拿UIAlertViewStyleLoginAndPasswordInput为例子,有两个文本框,通过以下方式拿到文本框


//拿到第一个文本框

    UITextField *textName = [alert textFieldAtIndex:0];

//为文本框赋值

    textName.text = @"用户名";

//拿到第二个文本框

    UITextField *textPwd = [alert textFieldAtIndex:1];

//为文本框赋值

    textPwd.text = @"密码";


UIAlertView,布布扣,bubuko.com

UIAlertView

标签:alertview

原文地址:http://5828666.blog.51cto.com/5818666/1436669

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