iOS web 页面播放视频时,状态栏被隐藏了。
解决方法是添加全屏和退出全屏的消息。
//监听UIWindow显示
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(beginFullScreen) name:UIWindowDidBecomeVisibleNotification object:nil];
//监听UIWindow隐藏
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(endFullScreen) name:UIWindowDidBecomeHiddenNotification object:nil];
退出全屏的方法
-(void)endFullScreen{
NSLog(@"退出全屏");
[[UIApplication sharedApplication]setStatusBarHidden:false animated:false];
}
网友评论