8

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.

john146
  • 977
  • 2
  • 11
  • 15

3 Answers3

7

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.

Paul Collins
  • 361
  • 3
  • 11
5

I've had good luck using minizip on iPhone.

Rob Napier
  • 286,113
  • 34
  • 456
  • 610
1

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/

runmad
  • 14,846
  • 9
  • 99
  • 140
  • According to the website, it says it requires garbage collection, so in its current form, it's not compatible with iPhone, unfortunately. – john146 Aug 06 '09 at 16:12