ios - SSZiparchive 简单解档
<p><p>我正在构建一个从 zip 文件下载大量数据的应用程序。我下载了 zipfile,但想提取 pdf 文件的目录。我正在使用 SSZipArchive,但我的代码不起作用。我想我没有正确解压缩它。</p>
<p>我的代码:</p>
<pre><code>;
// Unzipping
NSString *destinationPath = ;;
;
[ setValue:destinationPath forKey:@"catalogus"];
</code></pre>
<p>我想在另一个 ViewController 中打开 pdf</p>
<pre><code>NSString *bestand = [ valueForKey:@"catalogus"];
ReaderDocument *testdocument = ;
</code></pre>
<p>当我直接下载 pdf(根本没有压缩)时,我的代码工作正常。 </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>用这个解压:</p>
<pre><code>- (void)Unzipping {
NSArray*paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = ;
NSString *outputPath = ;
NSString *filePath = ;
NSString *zipPath = filePath;
;
}
</code></pre>
<p>并使用此方法从目录中获取 pdf:</p>
<pre><code>-(NSData *)FetchPDF
{
NSArray* paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString* documentsDirectory = ;
NSString *dataPath = ;
NSString *workSpacePath = ;
NSData *pdfData = ;
return pdfData;
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - SSZiparchive 简单解档,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/16792616/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/16792616/
</a>
</p>
页:
[1]