I have my app setup and everything works great until I call my image picker and my mail controller. On each of those views the UIStatusBar changes to black even though I have
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
and View controller-based status bar appearance set to YES.
Any idea how to control the light color of these modal views? See the images - the first one is the entire app, working great. The second is the image picker after the image library is shown and the third is the mail composer.
Any help would be highly appreciated!
View controller-based status bar
appearance toNO
2) SetStatus bar style
toUIStatusBarStyleLightContent
(just copy that value) 3) In appDelegate use ` [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];` – Levania