我发现在ios 4中,我无法使用:
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
那么,如何在ios4中实现与上述代码相同的效果?
答案 0 :(得分:1)
UITextField * textField = [[UITextField alloc] init];
textField.frame = CGRectMake(0, 0, 0, 0); //Your properties here
[alert addSubview:textField];
我建议全局定义文本字段,以便您可以从整个类中访问它,并可以检索文本输入。
答案 1 :(得分:0)
您必须将对象设置为警报视图的委托,并以willPresentAlertView:覆盖其外观,就像您执行任何其他UIView(添加子视图)一样。