在iOS中嵌入视频启动时停止背景音乐

时间:2014-06-22 08:48:07

标签: ios iphone objective-c

我正在使用UIWebView播放来自youtube的嵌入视频,我的问题是如何在嵌入视频开始播放时调用方法?

1 个答案:

答案 0 :(得分:0)

我自己找到了解决方案,所以如果有人想要它,那就是:

- (void)viewDidLoad中添加:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(videoStrated:) name:@"UIMoviePlayerControllerDidEnterFullscreenNotification" object:nil];

并添加:

-(void)videoStrated:(NSNotification *)notification
{
    NSLog(@"video started");
}
实施文件中的