Is there a way to hide the status bar when the app\'s launch image is displayed and then bring it back? My app has a black status bar and the one
You can initially add this key in the info.plist file: status bar is initially hidden=YES
status bar is initially hidden=YES
Then in the app delegate, add this line in the application:didFinishLaunchingWithOptions: method:
application:didFinishLaunchingWithOptions:
[[UIApplication sharedApplication] setStatusBarHidden:NO];