Sergey Grishchev
Sergey Grishchev

Reputation: 12051

Hide status bar on launch image

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 displayed over the launch image is grey.

Is there any solution for this?

Upvotes: 24

Views: 14581

Answers (5)

Hemant Dixit
Hemant Dixit

Reputation: 1145

Use this code for hiding status bar:

ObjectiveC:

[[UIApplication sharedApplication] setStatusBarHidden:YES
 withAnimation:UIStatusBarAnimationSlide];

Swift:

UIApplication.sharedApplication().setStatusBarHidden(true, withAnimation: .Slide)

If you don't need status bar in the beginning. Add this setting (UIStatusBarHidden) in your Info plist file:

Status bar is initially hidden

with a value of YES.

Use this code anywhere in the app to show the status bar for that particular View Controller

ObjectiveC:

[[UIApplication sharedApplication] setStatusBarHidden:NO withAnimation:UIStatusBarAnimationSlide];

Swift:

UIApplication.sharedApplication().setStatusBarHidden(false, withAnimation: .Slide)

Upvotes: 50

Hossam Ghareeb
Hossam Ghareeb

Reputation: 7123

You can initially add this key in the info.plist file: status bar is initially hidden=YES

Then in the app delegate, add this line in the application:didFinishLaunchingWithOptions: method:

  [[UIApplication sharedApplication] setStatusBarHidden:NO];

Upvotes: 14

Arash Zeinoddini
Arash Zeinoddini

Reputation: 819

To return it back:

- (void)applicationDidFinishLaunching:(UIApplication *)application {
    // Override point for customization after app launch

    [[UIApplication sharedApplication] setStatusBarHidden:NO];
}

Upvotes: 5

Apurv
Apurv

Reputation: 17186

Add below key to info.plist:

"Status bar is initially hidden" and select YES as value.

Upvotes: 3

The iOSDev
The iOSDev

Reputation: 5267

Just define a key in plist file will solve your problem

enter image description here

Happy Coding:)

Upvotes: 16

Related Questions