ios - 如何隐藏 YTPlayerView Youtube 标志
ios - How to hidden YTPlayerView Youtube logo
有一天,YouTube 徽标像图片一样出现。
消失时一起消失。
触摸图像重新出现。
如果触摸徽标,则 YouTube 有问题。
我想隐藏徽标。
我们查看了 youtube 开发者网站上的参数。
应用名为 modestbranding 的变量是没有用的。
我想隐藏标志。
这是我的代码
NSDictionary *dicPlayerVars = @{@"autohide":@1,
@"playsinline":@1,
@"showinfo":@0,
@"rel":@0,
@"color":@"white",
@"modestbranding":@1,};
[self.viewVideo loadWithVideoId:strVideoId playerVars:dicPlayerVars];
适度品牌化
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
添加到您的 url。这将删除徽标。
您可以在 Google Developers 网站上找到其他选项。
有一天,YouTube 徽标像图片一样出现。 消失时一起消失。 触摸图像重新出现。 如果触摸徽标,则 YouTube 有问题。 我想隐藏徽标。 我们查看了 youtube 开发者网站上的参数。 应用名为 modestbranding 的变量是没有用的。 我想隐藏标志。
这是我的代码
NSDictionary *dicPlayerVars = @{@"autohide":@1,
@"playsinline":@1,
@"showinfo":@0,
@"rel":@0,
@"color":@"white",
@"modestbranding":@1,};
[self.viewVideo loadWithVideoId:strVideoId playerVars:dicPlayerVars];
适度品牌化
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
添加到您的 url。这将删除徽标。
您可以在 Google Developers 网站上找到其他选项。