2

我在 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 中无法运行

http://i.imgur.com/lbrTQzO.png?1

4

2 回答 2

0

谢谢大家的回答。

[UITableView appearance].contentInset = UIEdgeInsetsMake(-36, 0, -36, 0);

当我将旧应用程序更新到 iOS7 并且 UiAlertView 受到该代码行的影响时,我试图手动设置分组表视图的顶部和底部边距。

希望这对其他人有帮助。

:)

于 2013-09-29T18:18:04.287 回答
0

代码很好。

从模拟器/设备中删除应用程序,清理工作区/项目并再次运行它。

于 2013-09-28T00:16:57.117 回答