iOS UIAlertView添加输入框
Posted 纠结的哈士奇
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS UIAlertView添加输入框相关的知识,希望对你有一定的参考价值。
添加:
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"新建文件夹" message:@"" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil]; [alert setAlertViewStyle:UIAlertViewStylePlainTextInput]; UITextField *txtName = [alert textFieldAtIndex:0]; txtName.placeholder = @"请输入名称"; [alert show];
代理点击处理:
#pragma mark - 点击代理 -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{ if (buttonIndex == 1) { UITextField *txt = [alertView textFieldAtIndex:0]; //获取txt内容即可 } }
以上是关于iOS UIAlertView添加输入框的主要内容,如果未能解决你的问题,请参考以下文章