Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any zip decompression for iPhone?

Tags:

iphone

I found the zlib and gzip decompression algorithms, but I need to compress a whole directory and download it from the server. Would rather not go file at a time.

Thanks.

like image 723
john146 Avatar asked Aug 04 '09 23:08

john146


3 Answers

ziparchive, a Google Code project by "acsolu," provides an iPhone-compatible Objective-C wrapper around minizip. With a little adaptation, I found it useful for doing unzip on the iPhone as you described.

like image 110
Paul Collins Avatar answered Oct 29 '22 20:10

Paul Collins


I've had good luck using minizip on iPhone.

like image 37
Rob Napier Avatar answered Oct 29 '22 20:10

Rob Napier


I attened a Tacow meeting in Toronto where Karl Kolpanic did a presentation on his ZipKit framework, which he said is also compatible with iPhone development.

It's available over at BitBucket.org: http://bitbucket.org/kolpanic/zipkit/

like image 45
runmad Avatar answered Oct 29 '22 20:10

runmad