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

UIAlertView

时间:2015-09-13 14:42:13      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

    //初始化警告框,并设置基本信息,设置代理
    UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"标题" message:@"信息" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];
    //设置警告框类型
    alert.alertViewStyle=UIAlertViewStylePlainTextInput;
   //警告框类型
    UIAlertViewStyleDefault = 0,//默认样式
    UIAlertViewStyleSecureTextInput,//带一个密码输入框
    UIAlertViewStylePlainTextInput,//带一个明输入框
    UIAlertViewStyleLoginAndPasswordInput//带一个账号密码框
    [alert show];
 

 

警告框常用协议方法

//警告框点击事件
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
    //buttonIndex判断点击的键,顺序是从取消开始从左向右
    if (buttonIndex==0) {
        NSLog(@"取消键");
    }
    else
    {
        NSLog(@"确认键");
    }
}
//用户按home键时调用
- (void)alertViewCancel:(UIAlertView *)alertView
{
    
}

 

UIAlertView

标签:

原文地址:http://www.cnblogs.com/kyuubee/p/4804888.html

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