I've been having an issue with most of the apps I've been working on where in iOS7 I cannot get the status bar to disappear. It's all perfectly fine for iOS 6.1 and below but nothing I was doing was making it go away.
My settings in my Plist look like this:
UIStatusBarHidden => YES
UIStatusBarHidden~ipad => YES
In my Xib files I've made sure that my views have Status Bar set to None (see screenshot) yet despite both of these set the glorious iOS7 status bar keeps appearing.
I then thought that maybe I had to set the Status Bar Style in the General target settings to Hide during application launch (see screenshot) but this too had no effect.
I have spent hours trying to get this one right!
The solution to this is actually very simple. There is a setting you need to add to your project plist file called View controller-based status bar appearance which needs to be set to NO.
The key pair is as follows:
UIViewControllerBasedStatusBarAppearance
=>NO
In the end your plist should look like this: