webView打开视频全屏,导致导航条消失
2019-03-25 本文已影响0人
柠檬初上_4ab4
- (void)viewDidLoad {
[super viewDidLoad];
// 监听横竖屏、widow变化,防止视频全屏影响状态栏条消失 但是还是有漏网之鱼
NSNotificationCenter *center = [NSNotificationCenter defaultCenter];
[center addObserver:self
selector:@selector(setNeedsStatusBarAppearanceUpdate)
name:UIDeviceOrientationDidChangeNotification
object:nil];
[center addObserver:self
selector:@selector(setNeedsStatusBarAppearanceUpdate)
name:UIWindowDidBecomeHiddenNotification
object:nil];
}
- (BOOL)prefersStatusBarHidden {
return UIInterfaceOrientationIsLandscape([UIApplication sharedApplication].statusBarOrientation);
}