首页 > 其他 > 详细

UIAlertView

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

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!