Cannot hide status bar in iOS7 Cannot hide status bar in iOS7 objective-c objective-c

Cannot hide status bar in iOS7


in your apps plist file add a row call it "View controller-based status bar appearance" and set it to NO

Note that this simply does not work, if you are using UIImagePickerController in the app.

from http://www.openfl.org/developer/forums/general-discussion/iphone-5ios-7-cant-hide-status-bar/, mgiroux's solution

An example adding View Base Controller to your Info settings in Xcode


Add method in your view controller.

- (BOOL)prefersStatusBarHidden {    return YES;}


In the Plist add the following properties.

-> Status bar is initially hidden = YES

-> View controller-based status bar appearance = NO

Add both - now the status bar will disappear.