我正在从ardaka.com/koa.zip下载档案。下载后我需要提取它,但我不能。需要使用哪个模块?我尝试使用Simple Unzipper和SSZipArchive,但它没有帮助。我的第二个问题是如何显示我提取的html内容?您可以看到我使用的webView代码,但我无法访问Documents文件夹中的html文件(我想我可以在文档中提取它)。如果有有用的提取器,也许我可以使用其他存档格式。
网络视图代码:
let documentsPath = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0] as! String
let localfilePath = NSBundle.mainBundle().URLForResource(documentsPath.index, withExtension: "html", subdirectory: "koa") //It's not working
let myRequest = NSURLRequest(URL: localfilePath!);
webView.loadRequest(myRequest);