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.
How can I prevent the application from hiding the status bar in Landscape orientation? Basically, how can I disable this "super awesome" feature that Apple/Xcode has shoved down my throat?
p.s. I've tried updating the view controllers with the following code, but it doesn't help.
- (BOOL)prefersStatusBarHidden {
return NO;
}