Quote:
Originally Posted by lbendlin
Excellent, thank you so much. How difficult is it to also add functions to unzip objects in memory (eg NSData) ?
|
it's easy, just replace line 164 in ZipArchive.mm with
NSMutableData* data = [[NSMutableData alloc] init];
and replace line 170 with
[data appendBytes:buffer length:read]
then you can handle the data in memory by yourselves