我正在使用UIWebView播放来自youtube的嵌入视频,我的问题是如何在嵌入视频开始播放时调用方法?
答案 0 :(得分:0)
我自己找到了解决方案,所以如果有人想要它,那就是:
在- (void)viewDidLoad
中添加:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(videoStrated:) name:@"UIMoviePlayerControllerDidEnterFullscreenNotification" object:nil];
并添加:
-(void)videoStrated:(NSNotification *)notification
{
NSLog(@"video started");
}
实施文件中的