Skip to content
pixelglow edited this page Oct 27, 2012 · 15 revisions

zipzap is a zip file I/O library for Mac OS X and iOS.

The zip file is an ideal container for compound Objective-C documents. Zip files are widely used and well understood. You can randomly access its parts. The format compresses decently and has extensive operating system and tool support. So we want to make the format an even easier choice for you. Thus, this library features:

  • Easy-to-use interface: The public API offers just three classes. Yet you can look through zip files using standard NSArray collections and properties. And you can zip, unzip and rezip zip files through standard NSData, NSStream and Image I/O classes.
  • Efficient implementation: We've optimized zip file reading and writing to reduce virtual memory pressure and disk file thrashing. Depending on how your compound document is organized, changing a single entry can be faster than writing the same data to a separate file.
  • File format compatibility: Since zipzap closely follows the zip file format specification, it is works with most Mac, Linux and Windows zip tools.

Design

Clone this wiki locally