我正试图在我的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: [:])