0
我想在我的Swift(2.x),iOS 9項目中使用YTPlayerView,但我只能用播放符號顯示視頻預覽。單擊符號時沒有任何反應。YTPlayerView不播放視頻當你點擊
playerView.loadWithVideoId("someId")
我想在我的Swift(2.x),iOS 9項目中使用YTPlayerView,但我只能用播放符號顯示視頻預覽。單擊符號時沒有任何反應。YTPlayerView不播放視頻當你點擊
playerView.loadWithVideoId("someId")
這是與YTPlayerView
的一些早期版本中的錯誤。
更新您的Podfile指向回購頭和更新莢:
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: [:])