So here is how I fixed it
In PLIST
View Controller Based Status Bar NO
Status Bar Style UIStatusBarStyleLightContent
In AppDelegate DidFinishLaunching
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;
[self.window setBackgroundColor:[UIColor whiteColor]];
In Each View Controller
- (UIStatusBarStyle) preferredStatusBarStyle {
return UIStatusBarStyleLightContent;
}