In iOS8 I want to set the color of the status bar text (carrier, time, battery) to a custom color.
I've set View controller-based status bar appearance to NO and tried this code in both the individual viewcontroller, and the app delegate:
[[UINavigationBar appearance] setTintColor:color_font];
and
[self.navigationController.navigationBar setBarTintColor:[UIColor greenColor]];
 
     
     
     
     
    