我有问题UIAlertview
in ios7
,
在我的应用程序中,我有多个labels
和textfileds
。uialerview
我在 ios5 和 6 中尝试过它工作正常,但在 ios7 中它没有显示标签和textfileds
.
请任何人帮助我
我有问题UIAlertview
in ios7
,
在我的应用程序中,我有多个labels
和textfileds
。uialerview
我在 ios5 和 6 中尝试过它工作正常,但在 ios7 中它没有显示标签和textfileds
.
请任何人帮助我
您可以设置警报的样式:
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
此代码将在 UIAlertView 上添加一个文本字段。您可以通过使用在 UIAlertView 委托回调中访问它
UITextField *textField = [alertView textFieldAtIndex:0];
但是,从 iOS 7 开始,UIAlertView 的 contentView 属性被移除了。看看这里。