[IOS]IOS8下监听UIWebview视频全屏方法

来源:互联网 发布:做淘宝客要钱吗 编辑:程序博客网 时间:2024/06/06 03:25

IOS8 之前使用的监听Uiwebview视频的代码已经作废。

IOS8下亲测可用的监听代码如下:

#define IS_OS_6_OR_LATER    ([[[UIDevice currentDevice] systemVersion] floatValue] >= 6.0)#define IS_OS_8_OR_LATER    ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0)

 if(IS_OS_6_OR_LATER){                [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(youTubeStarted:) name:@"UIMoviePlayerControllerDidEnterFullscreenNotification" object:nil];        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(youTubeFinished:) name:@"UIMoviePlayerControllerWillExitFullscreenNotification" object:nil];            }        if (IS_OS_8_OR_LATER) {                [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(youTubeStarted:) name:UIWindowDidBecomeVisibleNotification object:self.view.window];        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(youTubeFinished:) name:UIWindowDidBecomeHiddenNotification object:self.view.window];            }

0 0
原创粉丝点击