我已经在我的应用程序中嵌入了YouTube,现在我只想将播放器的全屏按钮绑定到我在iOS中的自定义方法,有什么方法可以实现吗?
使用UIWindowDidBecomeHiddenNotification
和UIWindowDidBecomeVisibleNotification
通知。当全屏播放器打开时,它会隐藏应用程序的窗口。
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(videoExitFullScreen:)
name:UIWindowDidBecomeVisibleNotification
object:self.view.window];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(videoEnterFullScreen:)
name:UIWindowDidBecomeHiddenNotification
object:self.view.window];
youtube ios播放器助手GitHub问题页面上的相关讨论。