I am looking for a way to zip and unzip files on iOS with arm64 support. Is there already a ready-to-use way for zip and unzipping files with arm64 support? (Best if there is also a way to integrate 7zip, bzip2, gzip, rar)
I am using SSZipArchive now, but it isn't working:
#import "SSZipArchive.h"
NSArray *nameWithoutExtention = [[[[self files] objectAtIndex:indexPath.row] lastPathComponent] componentsSeparatedByString:@"."];
NSString *fileName = [nameWithoutExtention objectAtIndex:0];
NSString *destPath = [NSString stringWithFormat:@"%@/%@", self.directory, fileName];
[fileManager createDirectoryAtPath:destPath withIntermediateDirectories:YES attributes:nil error:nil];
[SSZipArchive unzipFileAtPath:[[self files] objectAtIndex:indexPath.row] toDestination:destPath];
You can look at the official SSZipArchive Objective-C example (works on iOS11 which is pure arm64).
To zip:
To unzip:
Where
tempZipPath
andtempUnzipPath
were declared as: