Attached are a few screenshots from my app in the midst of UIModalTransitionStyleFlipHorizontal
I have changed the statusbarstyle to Black in info.plist and I have set the background color or MainWindow.xib to black. Yet, during the UIModalTransitionStyleFlipHorizontal the background behind the statusbar is white. Any idea what I might be doing wrong here? and how I maybe able able to fix this (i.e. get rid the white)?
UPDATE: Here's what my statusbar starts looking like, if I set UIStatusBarStyle to UIStatusBarStyleBlackTranslucent.
So, there is definitely something white behind the statusbar. :-(
There are two option possible..
In Info.plist file add the below
UIStatusBarStyle UIStatusBarStyleBlackTranslucent
orUIStatusBarStyle UIStatusBarStyleBlackOpaque
orUIStatusBarStyle UIStatusBarStyleDefault
Add the source in your application.
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackTranslucent animated:NO];
or
or
Update:
for hide status bar