如何显示最初从plist iphone隐藏的状态栏
我想在启动应用程序时隐藏状态栏以查看状态栏覆盖的启动图像。所以在 plist 中我添加了
Status bar is initially hidden YES
状态栏并被覆盖。 我的问题是状态栏始终在我的应用程序中被覆盖,我只想隐藏启动图像的状态栏,我该怎么办?
i want to hide the status bar when i launch my app to view launch image that was covered by status bar. so in plist i added
Status bar is initially hidden YES
and status bar is covered.
My problem is that status bar is covered always in my app, i want to hide status bar only for launch image, what can i do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
解决了:)
在启动应用程序时使用此
SOLVED
using this at launch of app :)
您可以通过将属性“状态栏最初隐藏”添加到 plist 来完成此操作,如下所示: -
you can do this by adding property, "Status bar Initially Hidden" to plist as shown below : -
或者,
您也可以在应用程序的 Info.plist 文件中将(状态栏最初隐藏)属性设置为“NO”。
只需取消选中该属性即可。
OR
you can also set the (Status bar Initially Hidden)Property to "NO" in Info.plist file in your Application.
Just uncheck this property.
Niko 和 JackTurky 的解决方案都不正确。 Niko 的:
...可以工作,但已被弃用。 iOS 3.2 及更高版本中正确的是:
Neither Niko's nor JackTurky's solutions are correct. Niko's:
...works but is deprecated. Correct in iOS 3.2 and later is: