I am trying to change the text color in the status bar and everything within the navigation.
I am using this code:
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
This code does work, however I receive a caution:
Implicit conversion from enumeration type 'enum UIStatusBar' to different enumeration type 'UIBarStyle' (aka) 'enum UIBarStyle').
Could someone tell me what I am doing wrong?
Peter
barStyleproperty (or calling thesetBarStyle:method) and passing one of theUIStatusBarStyle...values by mistake instead of one theUIBarStyle...values. - rmaddy