看不到我的应用程序的wifi /时间信息顶部

时间:2015-07-16 08:50:40

标签: ios storyboard

初始viewController如下所示。主view背景颜色设置为clear wifi /时间符号上方没有容器。为什么我无法看到这些信息,只能看到黑色背景?

enter image description here

enter image description here

尝试更改状态栏设置,但没有任何运气:

enter image description here

2 个答案:

答案 0 :(得分:0)

因为默认状态栏图标色调为黑色。

将状态栏样式设置为UIStatusBarStyleLightContent

More detail

只需将此2键添加到info.plist

即可

enter image description here

答案 1 :(得分:0)

尝试在“application didFinishLaunchingWithOptions:”中设置AppDelegate

[application setStatusBarStyle:UIStatusBarStyleLightContent];

如果你仍然没有看到它设置它没有像这样隐藏:

[application setStatusBarHidden:NO];