Default.png显示在状态栏区域下方,想要使其全屏

发布于 2024-11-12 22:29:03 字数 285 浏览 4 评论 0原文

正如标题所问,

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一笑百媚生 2024-11-19 22:29:03

当应用程序是为iOS7和Xcode5设计时,只需选择选项:目标->[您的应用程序名称]->常规->部署信息->在应用程序启动期间隐藏。它非常适合iOS7,但如果你想要为了适应iOS6,您需要在方法后面添加代码:

  • (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions;

代码是:

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 :

  • (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions;

the code is:

application.statusBarHidden = NO;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文