【发布时间】:2014-06-22 08:48:06
【问题描述】:
我正在使用 UIWebView 从 youtube 播放嵌入视频,我的问题是如何在嵌入视频开始播放时调用方法?
【问题讨论】:
标签: ios iphone objective-c
我正在使用 UIWebView 从 youtube 播放嵌入视频,我的问题是如何在嵌入视频开始播放时调用方法?
【问题讨论】:
标签: ios iphone objective-c
我自己找到了解决方案,所以如果有人想要它,那就是:
在- (void)viewDidLoad 添加:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(videoStrated:) name:@"UIMoviePlayerControllerDidEnterFullscreenNotification" object:nil];
并添加:
-(void)videoStrated:(NSNotification *)notification
{
NSLog(@"video started");
}
在实现文件中
【讨论】: