Y.Muranaka
Y.Muranaka

Reputation: 123

Why statusbar was forcibly missing only iOS8 when device was landscape?

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

Answers (1)

Vidhi
Vidhi

Reputation: 2034

To display status bar in landscape mode in ios 8, try following method

- (BOOL)prefersStatusBarHidden {
    return NO;
}

Upvotes: 1

Related Questions