I'm trying to change the font color of the status bar in one of my modal views to white. The other views are set to be white in the app delegate.
I've tried the following code found in an answer to a similar question in the ViewController.
- (UIStatusBarStyle)preferredStatusBarStyle {
return UIStatusBarStyleLightContent;
}
but that does not work since the font still appears as black.
Fairly new to the iOS scene, please help with any suggestions.