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添加输入框的主要内容,如果未能解决你的问题,请参考以下文章

iOS中UIAlertView(警告框)常用方法总结

IOS UIAlertView(警告框)方法总结

UIAlertView设置文本输入框格式

用于用户输入 ios7 的 UIAlertView 的替代方案

我可以在 ios 的警报框中放置多个文本框吗?

Objective-c,如何在 UIAlertView 上添加 UITextField