Is it feasible to hide the status bar in iOS 7 without erasing the space completely? I want to create my app's launch images, and just want to create the empty image with navigation bar and tabbar being set and status bar hidden. However, when I wrote out the following values in my .plist file to hide the status bar,
<key>UIStatusBarHidden</key>
<true/>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
, the status bar is hidden but the navigation bar is "pushed out" to the top of the screen, and hence the overlapped gray sheet on the top is now 44 px, not 64 px (44 + 20).
I also tried to change the height of the navigation bar, but found out that it cannot be modified and highly recommended to always use default values that Apple have developers to use.
So how can I fix up the issue?