Default.png显示在状态栏区域下方,想要使其全屏
正如标题所问,
My Default.png 显示在状态栏区域下方。
状态栏区域变黑。
如何使default.png真正全屏显示。
- 编辑
这不是链接的重复问题。
我的 info.plist 中已经检查了“状态栏最初是隐藏的”。
我没有看到状态栏,只有加载 default.png 时状态栏所在的区域显示为黑色。
我必须补充一点,我在 iphone 3g 和 ios 3.1.2 中看到这种情况发生,我测试的其他设备工作正常。
As asked in the title,
My Default.png is displayed below status bar region.
Status bar area is blacked out.
How can I make the default.png to be shown in true full screen.
- edit
It's not duplicate question as the ones linked.
"Status bar is initially hidden" is checked in my info.plist already.
I don't see status bar, just the area where status bar resides appear black when default.png loads.
I must add I see this happening in iphone 3g with ios 3.1.2, other devices I tested works fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当应用程序是为iOS7和Xcode5设计时,只需选择选项:目标->[您的应用程序名称]->常规->部署信息->在应用程序启动期间隐藏。它非常适合iOS7,但如果你想要为了适应iOS6,您需要在方法后面添加代码:
代码是:
application.statusBarHidden = NO;
when the app is designed for iOS7 with Xcode5, just select the option:Target->[Your App Name]->General->DeployMent Info->Hide during application launch.It's perfect for iOS7,but if you want to fit with iOS6,it's necessary for you to add the code behind in the method :
the code is:
application.statusBarHidden = NO;