I am displaying a UIWindow over the UIStatusBar
, by default the UIStatusBarStyle
is set to UIStatusBarStyleLightContent
, but when I display the UIWindow
the UIStatusBarStyle
switches to the black style.
I came across this topic while struggling with the same problem. What you have to do is create a new view controller and set it as the root view controller of your UIWindow
(that is the UIWindow
that you are displaying over your other view). Then, in this new view controller implement the preferredStatusBarStyle
method like this:
- (UIStatusBarStyle) preferredStatusBarStyle {
return UIStatusBarStyleLightContent;
}
Alternatively, you can set the "View controller-based status bar appearance" property in Info.plist to NO and implement the [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent]
method as Azabella suggested. However, this will set the Status Bar of all your views to white. If that's no problem, then there's no need to make a separate view controller just to set the preferredStatusBarStyle
method.
Did you set the "View controller-based status bar appearance" property in yourAppName-Info.plist to NO ?
This was a fairly trivial problem that I found to be resolved setting modalPresentationCapturesStatusBarAppearance
to true
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With