Reputation: 123
Please give me advise how to show statusbar when device is landscape. Of course, I already tried below,
[UIApplication sharedApplication].statusBarHidden = NO;
Upvotes: 0
Views: 176
Reputation: 2034
To display status bar in landscape mode in ios 8, try following method
- (BOOL)prefersStatusBarHidden {
return NO;
}
Upvotes: 1