我在UIWebView
播放视频时遇到了一个问题。
我从网络服务获得了视频网址,我正在UIWebview
播放该网址。
但问题是UIWebview
启动快速播放器和视频全屏显示。
我希望以固定的UIWebview
尺寸显示视频。
但UIWebview
全屏播放快速播放器中的视频。
我不想使用MPMoviePlayerController
我想像藤蔓一样显示视频。
以下是我的代码。
UIWebView *webMove = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 305, 306)];
webMove.delegate = self;
NSString *htmlFile = [[NSBundle mainBundle] pathForResource:@"demo" ofType:@"html"];
NSString* htmlString = [NSString stringWithContentsOfFile:htmlFile encoding:NSUTF8StringEncoding error:nil];
[webMove loadHTMLString:htmlString baseURL:nil];
webMove.mediaPlaybackRequiresUserAction = NO;
[cell.contentView addSubview:webMove];
感谢。