Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't hide status bar on launch

I'm building an iOS 9 app with horizontal pages navigation and need to show the status bar on some pages, and hide it on others. I want to use the fade in/out animation so I have to set

View controller-based status bar appearance = NO

and update the status bar like this:

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

This procedure works perfectly when navigating between pages, but I can't get rid of the status bar on launch.

I have tried setting: Status bar is initially hidden = YES

Adding this to the NavigationControllers viewDidLoad:

[[UIApplication sharedApplication] setStatusBarHidden:YES];
self.statusBarHidden = YES;
[self setNeedsStatusBarAppearanceUpdate];

Adding this to AppDelegates didFinishLaunchingWithOptions:

application.statusBarHidden = YES;

Adding this to the ViewController of the initial page:

- (BOOL)prefersStatusBarHidden {
    return YES;
}

Checking the "Hide status bar" option in General->Deployment Info

And setting "Status Bar" to "None" in the linked storyboard element

But the status bar is still showing up on launch. How can I get rid of the status bar on launch without changing the value of View controller-based status bar appearance ?

like image 746
Cbas Avatar asked Sep 25 '22 21:09

Cbas


2 Answers

Just tick the hide status bar in project setting as below.

  1. Project setting - For hiding the status bar at launch of app.

Hide Status bar

  1. Add below in viewController for which you need to hide.

- (BOOL)prefersStatusBarHidden { return YES; }

/------ UPDATE -----/

  1. With tick of hide status bar Without status bar

  2. Without tick of hide status bar With status bar

/------ Animate Status Bar -----/

In plist.

View controller-based status bar appearance = NO

Then in viewWillAppear method.

[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationFade];
like image 171
nikhil84 Avatar answered Sep 29 '22 05:09

nikhil84


changing plist file : 

set Status bar is initially hidden = YES

add row: View controller-based status bar appearance = NO

enter image description here

like image 25
Nikunj5294 Avatar answered Sep 29 '22 06:09

Nikunj5294