iOS 7 UIAlertView按钮不可见

时间:2013-09-28 00:07:17

标签: ios ios7 uialertview

我在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];

截图:

enter image description here

有什么想法吗?

更新:

我仍然遇到这个问题。我可以点击顶部但无法显示消息。 代码在iOS6.1中运行良好,但在iOS7中无法运行

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

2 个答案:

答案 0 :(得分:0)

代码很好。

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

答案 1 :(得分:0)

谢谢大家的回答。

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

我正在尝试手动设置分组tableview的上下边距,因为我将旧应用更新为iOS7,UiAlertView受到该行代码的影响。

希望这有助于其他人。

:)