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

UIAlertView

时间:2014-05-09 20:20:20      阅读:323      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   ext   c   http   

http://blog.csdn.net/developer_zhang/article/details/8825822

1.普通弹框

      - (void)viewDidLoad 

     {  

             [super viewDidLoad];  

             UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Title"  message:@"Message"  

                                                   delegate:nil  cancelButtonTitle:@"Cancel" 

                                                   otherButtonTitles:@"Ok", nil];  

             [alertView show]; 

     } 

2.带输入框的Alert

      加一行:[alertView setAlertViewStyle:UIAlertViewStyleLoginAndPasswordInput];

  • UIAlertViewStyleSecureTextInput//密码框  
  • UIAlertViewStylePlainTextInput//文本输入框

UIAlertView,布布扣,bubuko.com

UIAlertView

标签:style   blog   class   ext   c   http   

原文地址:http://www.cnblogs.com/ejllen/p/3719035.html

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