YTPlayerView 在您单击时无法播放视频



我正试图在我的Swift(2.x)iOS 9项目中使用YTPlayerView,但我只能显示带有播放符号的视频预览。单击符号时不会发生任何事情。

playerView.loadWithVideoId("someId")

这是YTPlayerView的一些早期版本的错误。

更新您的Podfile以指向回购头并更新pod:

pod 'youtube-ios-player-helper', :git=>'https://github.com/youtube/youtube-ios-player-helper', :commit=>'head'

然后尝试再次调用loadWithVideoId,或者使用空的playerVars字典:

self.playerView.loadWithVideoId("U5vgRJ0zK6Y")

self.playerView.loadWithVideoId("U5vgRJ0zK6Y", playerVars: [:])

相关内容

  • 没有找到相关文章

最新更新