允许HTML5视频在webview中进入全屏

时间:2013-03-25 20:22:41

标签: cocoa webview fullscreen

我有一个非常简单的测试应用程序设置。它只是显示webview并加载Youtube视频页面。页面加载和视频播放都很好,但点击全屏链接无效。 (见下面的截图)。我检查过,如果使用Flash播放器全屏播放视频效果很好,但HTML5全屏无法正常工作。是否有某种代理调用或其他可以在Webview中启用HTML5全屏视频的解决方法?

enter image description here

#import "AppDelegate.h"

@interface AppDelegate()
@property (weak) IBOutlet WebView *webview;
@end

@implementation AppDelegate

- (void)applicationDidFinishLaunching:(NSNotification *)notification {
    NSString *url = @"http://www.youtube.com/embed/VCERs0v1OoI?html5=1";
    self.webview.mainFrameURL = url;
}

@end

enter image description here

0 个答案:

没有答案
相关问题