如何在iphone中出现闪屏时隐藏状态栏

如何在iphone中出现闪屏时隐藏状态栏

本文介绍了如何在iphone中出现闪屏时隐藏状态栏?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在iphone中显示启动画面时,有没有办法隐藏状态栏?
并在应用程序中再次显示?

Is there a way to hide the status bar when showing splash screen in iphone?and show again in application?

推荐答案

我很确定如果你的Info.plist文件有状态栏最初是隐藏的值设置为 YES ,然后在您的应用程序加载时它不会显示。加载应用程序后,您可以使用UIApplication的 setStatusBarHidden:animated:方法重新显示状态栏。

I'm pretty sure that if your Info.plist file has the Status bar is initially hidden value set to YES, then it won't show while your application is loading. Once your application has loaded, you can re-show the status bar using UIApplication's setStatusBarHidden:animated: method.

这篇关于如何在iphone中出现闪屏时隐藏状态栏?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 00:16