标签:
//初始化警告框,并设置基本信息,设置代理
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
{
}
标签:
原文地址:http://www.cnblogs.com/kyuubee/p/4804888.html