Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide status bar on launch image

Tags:

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?

like image 875
Sergey Grischyov Avatar asked Aug 08 '12 12:08

Sergey Grischyov


People also ask

How to hide status bar in launch screen in iOS?

In your Project Settings -> General-> Deployment Info, check "Hide status bar" field.

How to hide status bar in Android programmatically?

This example demonstrates how to do I in android. Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project. Step 2 − Add the following code to res/layout/activity_main.


Video Answer


1 Answers

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) 
like image 98
Hemant Dixit Avatar answered Oct 12 '22 19:10

Hemant Dixit