Compiling with the Xcode 6 SDK seems to hide the default status bar in the iPhone landscape.
You can return the View controller-based status bar appearance setting the View controller-based status bar appearance to YES in Info.plist , and then adding the following code to your UIViewController :
- (BOOL)prefersStatusBarHidden { return NO; }
source share