【问题标题】:stop background music when embed video start in iOS在 iOS 中开始嵌入视频时停止背景音乐
【发布时间】:2014-06-22 08:48:06
【问题描述】:

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

【问题讨论】:

    标签: ios iphone objective-c


    【解决方案1】:

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

    - (void)viewDidLoad 添加:

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

    并添加:

    -(void)videoStrated:(NSNotification *)notification
    {
        NSLog(@"video started");
    }
    

    在实现文件中

    【讨论】:

      猜你喜欢
      • 2016-10-14
      • 2016-04-16
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多