I'm building a sprite kit game, and normally status bar does not show within my app. However, the drag and drop code that I'm using is doing something with the window and when the item is being dragged, the status bar flickers on and off. So my question is:
How can I completely and utterly tell iOS7 to hide status bar everywhere within my app?
I tried plugging per controller code, but cannot seem to find which particular controller is showing the status bar.
- (BOOL)prefersStatusBarHidden
{
return YES;
}
I have status bar set to initially hidden in plist:
I tried using setStatusBarHidden
within appDidFinishLaunching
Maybe there's some centralized setting I can set to off?