在ipad上全屏播放facebook视频(使用iFrame)

时间:2016-03-18 07:25:19

标签: ios objective-c facebook ipad uiwebview

我在一个通用的应用程序中显示Facebook视频,一切都在iphone中运行完美,但在ipad上它不能全屏运行。我的要求是全屏显示视频。
这是我的代码:

 NSString *html = [NSString stringWithFormat:@"<iframe src='http://www.facebook.com/video/embed?video_id=%@;' frameborder='0' width='%f' height='%f' allowfullscreen>",_selectedVideo.video_id,_videoView.frame.size.width,_videoView.frame.size.height];
 UIWebView *webview = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, self.videoView.frame.size.width, self.videoView.frame.size.height)];
 webview.allowsInlineMediaPlayback = NO;

 webview.backgroundColor = [UIColor blackColor];
 [webview loadHTMLString:html baseURL:nil];
 [self.videoView addSubview:webview];

0 个答案:

没有答案