Hide status bar in Launch Screen

2020-07-24 06:47发布

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条回答
兄弟一词,经得起流年.
2楼-- · 2020-07-24 07:12

To Hide Status Bar initially on launch screen, set Hide status bar check mark on ✓ enter image description here

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
}
查看更多
登录 后发表回答