我在 iOS7 中遇到了 UIAlertview 的问题。
我正在使用基本的 UIAlertview 初始化代码,但 cancelButtonTitle 文本只是没有显示。
代码:
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Feeds Saved"
message:@"Feeds are saved on My Feeds Tab."
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
alert.alertViewStyle = UIAlertViewStyleDefault;
[alert show];
截屏:
任何想法?
更新 :
我仍然有这个问题的问题。我可以单击顶部但无法显示消息。代码在 iOS6.1 中运行良好,但在 iOS7 中无法运行