我想通过以编程方式对此链接进行压缩和解压缩来播放来自html 5文件的视频 http://enhancelearning.co.in/downloads/HTML5.zip 这个文件包含4个html文件 zip和解压缩已成功创建,但视频无法在Web视图中播放 这是我的代码
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *docspath = [paths objectAtIndex:0];
paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
// NSString *cachePath = [paths objectAtIndex:0];
NSString *zipFile = [docspath stringByAppendingPathComponent:@"001.html"];
NSURL *url = [NSURL fileURLWithPath:zipFile];
[webVew loadRequest:[NSURLRequest requestWithURL:url]];
答案 0 :(得分:0)
首先尝试将此html文件放在网络中的某个位置,然后查看从safari转到此页面时是否播放视频。
这可能是HTML-Safari-ios问题,这样就更容易调试了。