Could anyone tell me how to hide StatusBar in the course of launching and show it again after the launching?
Asked
Active
Viewed 981 times
0
-
http://stackoverflow.com/questions/32965610/hide-the-status-bar-in-ios-9 – Badal Shah Feb 29 '16 at 09:23
-
http://stackoverflow.com/questions/1147706/how-to-hide-status-bar-when-splash-screen-appears-in-iphone – MOHAMMAD ISHAQ Feb 29 '16 at 09:26
-
http://stackoverflow.com/questions/20865639/hide-statusbar-using-info-plist-in-any-app duplicated – REALFREE Feb 29 '16 at 09:32
3 Answers
0
Its very simple, set Status bar is initially hidden YES
in Info.plist file and also Make sure your not set View controller-based status bar appearance
in info.plist file

Mobile Dev
- 120
- 6
0
Set the UIStatusBarHidden to true or false in the info.plist in order to show or hide the status bar when launching.
<key>UIStatusBarHidden</key>
<true/>

rockdaswift
- 9,613
- 5
- 40
- 46