Is there a way in Xcode when using the Storyboard in the Interface Builder to disable the status bar completely, so that when I create a new View Controller I don’t keep having to turn “status bar” from inferred to none.
Is there a way in Xcode when using the Storyboard in the Interface Builder
Share
Have you already checked if setting
UIStatusBarHiddentoYESin your Info.plist works? See the documentation:http://developer.apple.com/library/mac/documentation/General/Reference/InfoPlistKeyReference/Articles/iPhoneOSKeys.html#//apple_ref/doc/uid/TP40009252-SW15
This will hide the status bar on application start.