I'm developing an application for a school that I work at. Currently I am having issues with changing the status bar text from it's default state of black to white so we can actually read it!
I have tried everything i've found here and on the dev forums, including calling View controller-based status bar appearance = "NO"
and also [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
I just fixed this issue in one of my apps. Implement this in your UIViewController:
- (UIStatusBarStyle)preferredStatusBarStyle { return UIStatusBarStyleLightContent; }
Or choose another UIStatusBarStyle
value that you need.
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