是否可以以编程方式在UIAlertView中选择文本字段的文本?

时间:2014-08-21 15:47:25

标签: ios select uitextfield uialertview

我想自动选择我添加到UIAlertView的文字。我认为这会奏效,但它没有:

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:...];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;

UITextField *tf = [alert textFieldAtIndex:0];
tf.text = @"Some text";

[tf selectAll:nil];

0 个答案:

没有答案