I want the status bar to be displayed in both orientations in iOS 8; it\'s being displayed properly in iOS 7.
navigationController.isNavigationBarHidden
I had the same issue! Fixed by addicting this to viewDidLoad
[self setNeedsStatusBarAppearanceUpdate];
And this to implementation itself
-(BOOL)prefersStatusBarHidden{ return NO; }