-
Notifications
You must be signed in to change notification settings - Fork 259
Using ZipArchive
soundevolution edited this page Oct 17, 2010
·
3 revisions
In this repository, there is an XCode project "ZipArchive". Here's the basic instructions for using it in your iOS app:
- Get the ZipArchive source.
- Build ZipArchive.
- Open your iOS project
- Add items like so:
You can add the output "ZipArchive.a" file directly, but if you add it via the XCode Project, then XCode will understand the dependency on the ZipArchive project and rebuild it if necessary.
You will need these three files in your project:
- ZipArchive.h -> so your app knows about ZipArchive
- ZipArchive.a -> the actual code compiled.
- libz -> the system Z compression library which does the actual data compression/decompression
Refer to the ZipArchive.m and ZipArchive.h files for more documentation.
(I'm trying to figure out if doxygen can output in a way that github can use... but haven't found anything yet.)