在iOS中自定义YouTube播放器



我有一个应用程序,使用YouTube的YTPlayerView流媒体视频。我想开始自定义它(controls/rotation)在网上搜索了几天后,我找不到这个问题的答案。

所有我能找到的是使用JS/Ruby/HTML来改变播放器。有人知道有什么方法可以做到这一点吗?

播放器控件可以在下面描述的字典中给出,并且可以具有值0,1,2。查看此链接以获取控件功能https://developers.google.com/youtube/player_parameters控件

NSDictionary *playerVars = @{
  @"controls" : @0,
  @"playsinline" : @1,
  @"autohide" : @1,
  @"showinfo" : @0,
  @"modestbranding" : @1
};
[self.playerView loadWithVideoId:videoId playerVars:playerVars];

相关内容

  • 没有找到相关文章

最新更新