如何快速解压缩文件?在Objective-C中,我使用了SSZipArchive,我喜欢它。如下面的代码所示。我怀疑是否决定保留SSZipArchive,I will have to bridge an Objective-C file to my Swift file.是否有任何更新的第三方或更好的Apple文档在Swift中解压缩文件?
NSString *zipPath = [self.globalFileStrucure stringByAppendingPathComponent:@"zipfile.zip"];
[data writeToFile:zipPath options:0 error:&error];
BOOL unZipped = 0;
unZipped = [SSZipArchive unzipFileAtPath:zipPath toDestination:self.globalFileStrucure];
最佳答案
Swift 2(更新):
所以它对我有用,没有错误:
#import“SSZipArchive.h”
(项目->构建阶段->与库链接二进制文件-> +)
关于ios - 快速解压缩文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26654194/