有一天,YouTube的标志看起来像一张图片。消失时一起消失。触摸图像以重新出现。如果您触摸徽标,YouTube会出现问题。我想把标志藏起来。我们查看了youtube开发者站点上的参数。应用一个名为“谦虚品牌”的变量是无用的。我想把标志藏起来。
这是我的密码
NSDictionary *dicPlayerVars = @{@"autohide":@1,
@"playsinline":@1,
@"showinfo":@0,
@"rel":@0,
@"color":@"white",
@"modestbranding":@1,};
[self.viewVideo loadWithVideoId:strVideoId playerVars:dicPlayerVars];

发布于 2017-06-07 05:26:01
modestbranding
此参数允许您使用不显示YouTube徽标的YouTube播放机。将参数值设置为1,以防止YouTube徽标在控件栏中显示。
您可以将?modestbranding=1添加到您的url。这将移除徽标。
您可以在Google开发人员网站上找到其他选项。
https://stackoverflow.com/questions/44404130
复制相似问题