Application build with Xcode 6.x automatically hides the status bar in Landscape orientation (iPhone). The same application when compiled with Xcode 5.x doesn\'t do that.
Set "View controller-based status bar appearance" to YES in Info.plist
Then place the following code in the desired view controller:
- (BOOL)prefersStatusBarHidden { return NO; }