このリンクhttp://enhancelearning.co.in/downloads/HTML5.zipのプログラムでファイルを圧縮して解凍することにより、HTML 5ファイルからビデオを再生したい このファイルには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]];