By default the launch screen provides a status bar. Is it possible to hide the status bar in launch screen like a Twitter app ( iOS ).
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
To Hide Status Bar initially on launch screen, set Hide status bar
check mark on ✓
OR
In Your Info.plist add: Status bar is initially hidden
YES
.
The above both option having same impact.
Additionally
To Hide Status Bar on specific ViewController override
prefersStatusBarHidden
with true
override var prefersStatusBarHidden: Bool{
return true
}