我试图显示youtube视频,但有时YTPlayerView以全屏显示,有时却没有。我希望它始终处于全屏状态。我该如何实现?
ytView = [[YTPlayerView alloc] initWithFrame:self.view.bounds];
ytView.backgroundColor = self.view.backgroundColor;
ytView.delegate = self;
NSDictionary *playvarsDic = @{ @"controls" : @1, @"playsinline" : @0, @"autohide" : @1, @"showinfo" : @1, @"autoplay": @1, @"modestbranding" : @1 };
[ytView loadWithVideoId:firstImage.Source playerVars: playvarsDic];
答案 0 :(得分:0)
在playerView.webView.allowsInlineMediaPlayback = false
中手动设置playerViewDidBecomeReady
,以强制播放器进入网络视图。
答案 1 :(得分:0)
要全屏播放youtube视频,您需要添加一个播放器属性才能全屏播放视频。
fullscreen property: fs = 1 or 0
如下更新您的字典:
NSDictionary *playvarsDic = @{ @"fs" : @1,
@"controls" : @1,
@"playsinline" : @0,
@"autohide" : @1,
@"showinfo" : @1,
@"autoplay": @1,
@"modestbranding" : @1 };
全屏属性:fs
将此参数设置为0会阻止全屏按钮 在播放器中显示。默认值为1,这会导致 全屏按钮显示。
在此链接上检查所有播放器属性:https://developers.google.com/youtube/player_parameters?playerVersion=HTML5
希望这将帮助您始终以全屏模式显示youtube视频!