Status bar stays black even when set to light - ios

I have app compatible with iPad and iPhone in Swift, supporting iOS 7 and 8, using XCode 6.4. Now I made app structured as master-detail control and set in split controller status bar to be light (white). In Storyboard, all controllers display white status bar (master, detail, navigation controllers...) but nor in simulator nor in iPhone / iPad is white but black!
I tried in each controller and its navigator controller to set light status bar. Tried in Master view controller to set it. Tried to add in plist option that allows me setting up per view controller (note that I do not want to control status bar color per controller but to set global for the app). Also tried to set override function for status bar style and even reload function in viewDidLoad func. And nothing worked.
I am really stuck here; I thought just set in split control light status bar and everywhere else it inherits it (and that's how it indeed looks in stoyboard). So what am I missing? Can anyone help me out or give me some hints or directions in further investigation?
Here is demo code: https://goo.gl/U3Ynbc
Many thanks in advance!

In your Info.plist, add the "View controller-based status bar appearance" to YES.
Then, in your view controller subclass, override this method:
- (UIStatusBarStyle)preferredStatusBarStyle
{
return UIStatusBarStyleLightContent;
}

Ok found it.
In plist set "View controller-based status bar appearance" to NO and in appDelegate.swift in func application before return true add following line:
splitViewController.navigationController?.navigationBar.tintColor = UIColor.whiteColor()

having had the same experience as the questioner (seeing the statusBar foreground white in the simulator after having set the values in the .storyboard to "Light Content", and having tried changing this in several places for an app that uses a splitView), i discovered upon inspecting the XML of the storyboard that these were "simulated metrics".
when i added the value UIStatusBarStyle to my Info.plist, and set it to UIStatusBarStyleLightContent (which was not one of the options presented), then ran, the status bar style appeared correctly. (and that was after deleting all of the simulated metrics changes i had placed in the .storyboard file).

If you want to set status bar style, application level then set UIViewControllerBasedStatusBarAppearance to NO in your .plist file.
if you wan to set status bar style, at view controller level then follow these steps:
Set the UIViewControllerBasedStatusBarAppearance to YES in the .plist file, if you need to set status bar style at UIViewController level only.
In the viewDidLoad add function - setNeedsStatusBarAppearanceUpdate
override preferredStatusBarStyle in your view controller.
-
override func viewDidLoad() {
super.viewDidLoad()
self.setNeedsStatusBarAppearanceUpdate()
}
override var preferredStatusBarStyle: UIStatusBarStyle {
return .lightContent
}
Set value of .plist according to status bar style setup level.

Related

Swift5 Status Bar Color for iOS - keep white color of battery, signal indicator

I have table view controller which is embedded into a navigation controller. Basically I want my app to look like the "alarm" app from iOS: complete app is black including the navigation bar, but I want the top line where the carrier, battery life etc. is shown to be also black but with white text font. How is that possible?
Add this to any/all view controllers:
override var preferredStatusBarStyle : UIStatusBarStyle {
return .lightContent
}
To change the color of the status bar of a specific screen/ViewController, add it to the following class.
override var preferredStatusBarStyle : UIStatusBarStyle {
return .lightContent
}
If you want the whole app to have the same status bar color, then you can do it the following ways -
Inside the project settings - click the project, and under General and Deployment Info select the Status bar style to however you want.
See image for reference
Go to info.plist and add a new row, Type in Status Bar Style and set the value to whichever you want.

Can see Status Bar space but not information in iOS Swift

I add Navigation Controller(2nd View) and add one UIViewController(3rd View) as root view controller.
And then I connect segue to Navigation Controller(2nd View) from anther UIViewController(1st View).
So I can see navigation Bar with Status bar space when the view is presented.
But the information like Carriers, batteries, time information are not shown in Status Bar.
(I changed navigation Color to pink for showing you the problem.
The blue part is title view for navigation bar.)
So I tried 2 solutions.
First, I thought StatusBar Color problem. But it was not.
UIApplication.shared.statusBarStyle = .default
Second, I tried following code for showing. It was not also.
override var prefersStatusBarHidden: Bool {
return false
}
and
UIApplication.shared.setStatusBarHidden(false, with: UIStatusBarAnimation.none)
I need to solve this not-showing problem with status Bar.
I can see status Bar space but not information.
There are lots of ways to toggle the color and visibility of the status bar in iOS.
Similar question with possible correct answers for you:
How to change Status Bar text color in iOS 7
In short, if you want to toggle it between every screens, follow these steps:
In your info.plist, add this new key:
View controller-based status bar appearance and value should be NO.
In your viewWillAppear, toggle the status bar with the code you have posted:
UIApplication.shared.statusBarStyle = .lightContent - white
or
UIApplication.shared.statusBarStyle = .default - black
Edit:
Initial ViewController --> Present Modally --> NavigationController + ViewController.
This is how you set up your screens, right?. If so,
You can setup the status bar in your NavigationController properties in your Interface Builder.
And toggle the visibility and/or color of your status bar in side the viewWillAppear of your 3rd ViewController.
I suggest you check out Debug View Hierarchy.
Based on my experiences in previous projects, if I can't come up with code-based solutions on UI-related problems the simplest debugging technique that I can do is check the view hierarchy during run time.
See if the Navigation Controller View blocks the Main View which can possibly hide the status bar and if yes, work your way on solving it.
I hope it helps.

How to set the status bar to "Light" on Xcode 8 (preferably not by code)

is there any other way to set the status bar to "Light" on Xcode 8 than by using preferredStatusBarStyle. It would be great to do it through the Plist file for example.
Finally figured it out, NO CODE NEEDED, you simply need to on your project settings set "Status Bar Style" to Light and go on your plist and add the row "View controller-based status bar appearance" with the value NO. That simple, no need to implement all your UIViewControllers...
Code is how you set it, so there's no point saying "preferably not by code". You don't do this according to your preference, but according to the API. That API is that every top-level view controller dictates how it wants the status bar to appear: if you want the status bar to be always light, you must override the preferredStatusBarStyle property in every view controller that will ever be top-level. (In the case of a navigation controller, you can readily do this by setting its bar style; for other built-in parent view controllers, your child view controller may be consulted automatically.)

Status Bar Icons Turn Black when Search Bar is active

Okay, so...
I have set the NavigationBar Style to Black so that the Status Bar Icons become White.
(See Pic 1 Below)
The Problem begins with the Search Bar. When it's active and you can type it turns the NavigationBar Style back to Default which makes the Status Bar Icons Black again. Though once you are done with it and it goes back to being inactive, the NavigationBar Style goes back to Black, where it should be all the time.
(See Pic 2 Below)
I haven't found a way yet to make the Status Bar Icons remain White at all times.
Help is much appreciated.
It sounds like you have view controller based status bar appearance setup.
If you want the status bar to be white all the time, then you can set the UIViewControllerBasedStatusBarAppearance info.plist key to NO and then set UIStatusBarStyle key to UIStatusBarStyleLightContent.
If you do want to keep view controller based status bar appearance, then you will need to subclass UISearchController and override the status bar style as you are technically presenting a different view controller for search hence the change in status bar style...
class SearchController: UISearchController {
override func preferredStatusBarStyle() -> UIStatusBarStyle {
return .LightContent
}
}
(note that i assume you are using UISearchController as your question doesn't mention your approach)

setStatusBarHidden deprecated, but only thing that works

I've tried all the solutions I can find including those in: setStatusBarHidden is deprecated in iOS 9.0 but none of them work with my application.
It is a simple, single view application. There is a Navigation bar with a single button on it which the status bar should show on top of.
In my .plist:
Status bar is initially hidden: NO
Status bar style: UIStatusBarStyleLightContent
View Controller based status bar appearance: NO
Changing any of these doesn't seem to make any difference at all. I have the status bar style "Hide during application launch" option checked as I don't want it to appear on the splash screen.
I have:
- (BOOL)prefersStatusBarHidden
{
return NO;
}
-(UIStatusBarStyle)preferredStatusBarStyle
{
NSLog(#"style");
return UIStatusBarStyleLightContent;
}
and setNeedsStatusBarAppearanceUpdate which are definitely all called when the view loads in my ViewController.
The view is established in a .storyboard, but many of the fields are manipulated in the ViewController.m as well. The value assigned to the status bar in the simulated metrics doesn't seem to have any effect either.
I need my status bar to be hidden during the launch screen and visible on the viewController. Please help me find a solution that doesn't use the deprecated setStatusbarHidden!
EDIT:
I still haven't solved this, and I surely can't be the only one with this problem! It happens in both apps that I have written.
I've just been trying to solve the same problem, I don't know why the setStatusBarHidden and setStatusBarStyle have been deprecated as the new methods are not at all intuitive.
To hide the status bar on launch I have these settings in my plist:
View controller-based status bar appearance: YES
Status bar is initially hidden: YES
Then to show the status bar after launch I have in my view controller:
- (BOOL)prefersStatusBarHidden {
return NO;
}
-(UIStatusBarStyle)preferredStatusBarStyle {
return UIStatusBarStyleLightContent;
}
This still didn't work until I found this answer https://stackoverflow.com/a/19365160/488611. So in viewDidLoad I also set the navigation bar style:
self.navigationController.navigationBar.barStyle = UIBarStyleBlackTranslucent;
Which makes absolutely no sense, but works.
you can use
application.statusBarHidden=YES;
in AppDelegate.m
didFinishLaunchingWithOptions
In my mind, you should change the value of UIViewControllerBasedStatusBarAppearance.
Set the value file .plist of project a is
UIViewControllerBasedStatusBarAppearance = NO
and check in file AppDelegate and set the code
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
Hope my solution can be solved your problem.
OK, I totally misunderstood your question. Here's the correct answer.
Add the below value to you 'info.plist'.
Status bar is initially hidden : YES
View Controller based status bar appearance : YES
On UIViewControllers which you want to show status bar
- (BOOL)prefersStatusBarHidden {
return NO;
}
That's all.
I am not an expert on this, but I played with these settings for some time and came to the following conclusions.
General/Deployment Info:
Status Bar Style: Default (black), Light
Hide status bar (checkbox)
Both change the status bar on the launch screen only.
Note that if you take a screen shot to create this image and the screen shot included a status bar, it will appear that the device is setting the status bar even if you have checked the Hide status bar checkbox! I was tricked by this for a while before I finally thought to look at the launch image itself, and there was a status bar in the photo, so setting Hide never seemed to work even though it really was working. I removed the status bar from the images themselves using Photoshop, and the launch status bars functioned as expected after that.
Info/Custom iOS Target Properties (these change the values in the PLIST, so you could change them in either place):
Status Bar Is Initially Hidden: Yes/No
Status Bar Style: Gray (default), Transparent Black, Opaque Black
View Controller based status bar appearance : Yes/No
If you set Status Bar Is Initially Hidden to No, then you will have the status bar on your View Controller like you wanted. If you want to hide the status bar on your View Controller, you have to set Status Bar Is Initially Hidden to Yes AND set View Controller based status bar appearance to No.
Attributes Inspector for the View Controller/Simulated Metrics
Status Bar: None, Inferred, Default, Light, Black (deprecated)
This seems to have no effect on anything except the appearance of the view controllers in the StoryBoard but NOT in the simulator.
Summary: To answer your question, under General Deployment Info, check the checkbox that says Hide Status Bar. This will hide the status bar on the launch screen. Make certain that your image for the launch screen does NOT have a picture of a status bar in it. None of the settings in the StoryBoard or in the Target seems to turn off the view controller's status bar, so it seems that it will stay on like you wanted. However, I did not test any of the programmatic settings; I think that you should not do any of those, and it will work the way you want.

Resources