如何在启动过程中隐藏StatusBar,启动后再显示
How to hide StatusBar in the course of launching,and show it again after the launching
谁能告诉我如何在启动过程中隐藏 StatusBar 并在启动后再次显示它?
很简单,在 Info.plist 文件中设置 Status bar is initially hidden YES
并且确保你没有在 info.plist 文件
中设置 View controller-based status bar appearance
在 info.plist 中将 UIStatusBarHidden 设置为 true 或 false,以便在启动时显示或隐藏状态栏。
<key>UIStatusBarHidden</key>
<true/>
在您的信息 plist 文件中设置它。
谁能告诉我如何在启动过程中隐藏 StatusBar 并在启动后再次显示它?
很简单,在 Info.plist 文件中设置 Status bar is initially hidden YES
并且确保你没有在 info.plist 文件
View controller-based status bar appearance
在 info.plist 中将 UIStatusBarHidden 设置为 true 或 false,以便在启动时显示或隐藏状态栏。
<key>UIStatusBarHidden</key>
<true/>
在您的信息 plist 文件中设置它。