我在一个通用的应用程序中显示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];