UIAlertView设置文本输入框格式

Posted X了个code

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UIAlertView设置文本输入框格式相关的知识,希望对你有一定的参考价值。

- (void)viewDidLoad {

    [super viewDidLoad];

   

    UIAlertView * alertV = [[UIAlertView alloc] initWithTitle:@"textfield" message:nil delegate:self cancelButtonTitle:nil otherButtonTitles:@"yes",@"no", nil];

    [alertV setAlertViewStyle:UIAlertViewStylePlainTextInput];//将其设置成文本输入的格式

    [alertV show];

  

}

-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex

{

    UITextField *nameField = [alertView textFieldAtIndex:0];//获取对应的文本输入框

    NSLog(@"---%@",nameField.text);

}

以上是关于UIAlertView设置文本输入框格式的主要内容,如果未能解决你的问题,请参考以下文章

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

C# winform 文本框里,怎么设置数字的格式?

uwp xaml - 将自定义输入格式设置为文本框

iOS UIAlertView添加输入框

swift之对话框-基础使用

javaswing文本框不能输入中文