如何在ios4中获取带文本输入的警报视图

时间:2012-07-13 02:01:26

标签: iphone ios ipad

我发现在ios 4中,我无法使用:

alert.alertViewStyle = UIAlertViewStylePlainTextInput;

那么,如何在ios4中实现与上述代码相同的效果?

2 个答案:

答案 0 :(得分:1)

UITextField * textField = [[UITextField alloc] init];
textField.frame = CGRectMake(0, 0, 0, 0); //Your properties here

[alert addSubview:textField];

我建议全局定义文本字段,以便您可以从整个类中访问它,并可以检索文本输入。

答案 1 :(得分:0)

您必须将对象设置为警报视图的委托,并以willPresentAlertView:覆盖其外观,就像您执行任何其他UIView(添加子视图)一样。