When I present the ImagePickerController the statusBar text color is still bla
This is the quickest solution I could think of. Create the following category:
@implementation UIImagePickerController (LightStatusBar) - (UIStatusBarStyle)preferredStatusBarStyle { return UIStatusBarStyleLightContent; } @end