我正在生成文档目录中的数据的 zip 文件,问题是它在 iphone 模拟器上运行良好,但相同的编码不适用于 iphone 实际设备,即电话 5
这是我的代码片段
ZipArchive *archiver = [[ZipArchive alloc] init];
[archiver CreateZipFile2:archivePath];
for(NSString *path in subpaths)
{
NSString *longPath = [exportPath stringByAppendingPathComponent:path];
if([fileManager fileExistsAtPath:longPath isDirectory:&isDir] && !isDir)
{
[archiver CreateZipFile2:longPath];
[archiver addFileToZip:longPath newname:path];
}
}
BOOL successCompressing = [archiver CloseZipFile2];
我试图用谷歌搜索但它没有提供任何帮助请指导我谢谢