有一天,YouTube Logo 看起来像一张图片。
消失时一起消失。
触摸图像以重新出现。
如果您触摸 Logo ,则 YouTube 存在问题。
我想隐藏 Logo 。
我们查看了 youtube 开发者网站上的参数。
应用一个称为谦虚品牌的变量是没有用的。
我想隐藏 Logo 。
这是我的代码
NSDictionary *dicPlayerVars = @{@"autohide"1,
@"playsinline"1,
@"showinfo"0,
@"rel"0,
@"color""white",
@"modestbranding"1,};
[self.viewVideo loadWithVideoId:strVideoId playerVars:dicPlayerVars];
Best Answer-推荐答案 strong>
谦虚的品牌
This parameter lets you use a YouTube player that does not show a YouTube logo. Set the parameter value to 1 to prevent the YouTube logo from displaying in the control bar.
您可以将 ?modestbranding=1 添加到您的网址。这将删除 Logo 。
您可以在 Google Developers 上找到其他选项网站。
关于ios - 如何隐藏 YTPlayerView Youtube 标志,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/44404130/
|