When I launch my app, it shows the launch image and a black status bar. How can I change it so the status bar is light during launch? I have set the status bar appearance to
To your Info.plist file add this key-value pair:
UIStatusBarStyle: UIStatusBarStyleLightContent
The default (black) value is UIStatusBarStyleDefault
.
You can also append ~iphone
or ~ipad
to the key.
There are 2 steps:
This is usually what developers know how to do – Under Target settings > General > Status Bar Style > Change to Light. This will effect the Info.plist to include UIStatusBarStyleLightContent
.
This step is often missed out – In Info.plist, add View controller-based status bar appearance
and set to NO
In my case, UIStatusBarStyleLightContent
wasn't a possible option. I set Transparent black style (alpha of 0.5)
as value for the key Status bar style
in my .plist and the result was a white status bar.
Works on iOS7 and iOS8
You need to set in your Info.plist file property for key
Status bar style
:
Opaque black style
or Transparent black style (alpha of
0.5)
for White status barGray style (default)
to set Black status bar color.It looks like you set Background style for Status Bar and XCode understand which color of status bar need to choose. Dark background - white status bar, light background - black status bar
Just define this method in any view or file you want:
- (UIStatusBarStyle)preferredStatusBarStyle
{
return UIStatusBarStyleLightContent;
}
// swift
override func preferredStatusBarStyle() -> UIStatusBarStyle {
return .LightContent
}
**
- You must take care of these three things:
**
**- In info.plist file**
Set UIViewControllerBasedStatusBarAppearance to YES
**- In your view controller** in which you want change color of status bar
add this [self setNeedsStatusBarAppearanceUpdate] in viewDidLoad
**- Lastly, add this method**
- (UIStatusBarStyle)preferredStatusBarStyle
{
return UIStatusBarStyleLightContent;
}
Note: If you want to set color of statusBar for all the View Controllers then steps are
**- In info.plist file**
Set UIViewControllerBasedStatusBarAppearance to YES
**- Then add this in appDelegate**
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent; // **It is deprecated in iOS 9**