Go to file
2013-06-23 14:14:03 +02:00
ARCHelper Added ARC support through Nick Lockwood's ARC Helper; README updated; bumped version to 0.8.1 2013-03-04 23:24:24 +01:00
Classes Fixed test 2 to zip & unzip up to 6.3 GB 2013-06-23 14:14:03 +02:00
MiniZip Removed dead stores; fixed minor memory leak 2013-06-23 00:58:23 +02:00
Objective-Zip Fixed use of 64 bit APIs; bumped version to 0.8.3 2013-06-23 14:13:34 +02:00
Objective-Zip.xcodeproj Minor changes 2013-06-23 00:59:54 +02:00
ZLib Updated to version 1.2.8 of ZLib 2013-06-18 23:23:28 +02:00
.gitignore Added .gitignore 2012-11-28 23:30:56 +01:00
Default.png First commit, v. 0.8 beta 2012-11-28 22:04:12 +01:00
GETTING_STARTED.md Added ARC support through Nick Lockwood's ARC Helper; README updated; bumped version to 0.8.1 2013-03-04 23:24:24 +01:00
LICENSE.md Added LICENSE 2012-11-28 23:48:13 +01:00
main.m First commit, v. 0.8 beta 2012-11-28 22:04:12 +01:00
MainWindow.xib First commit, v. 0.8 beta 2012-11-28 22:04:12 +01:00
Objective_Zip_Prefix.pch Switched test 2 to random values 2013-06-23 00:59:08 +02:00
Objective_Zip-Info.plist First commit, v. 0.8 beta 2012-11-28 22:04:12 +01:00
Objective_ZipViewController.xib Fixed test 2 to zip & unzip up to 6.3 GB 2013-06-23 14:14:03 +02:00
ObjectiveZipIcon.png First commit, v. 0.8 beta 2012-11-28 22:04:12 +01:00
README.md Updated README 2013-06-23 01:00:04 +02:00

Objective-Zip

Introduction

Objective-Zip is a small Objective-C library that wraps ZLib and MiniZip in an object-oriented friendly way.

What is contained here

The source repository contains a sample application with full sources for ZLib, MiniZip and Objective-Zip, together with a unit test UI. The versions included are:

  • 1.2.8 for ZLib
  • 1.1 for MiniZip
  • latest version for Objective-Zip.

Please note that ZLib and MiniZip are included here only to provide a complete and self-contained package, but they are copyrighted by their respective authors and redistributed on respect of their software license. Please refer to their websites (linked above) for more informations.

Getting started

Please see GETTING_STARTED.md.

License

The library is distributed under the New BSD License.

Version history

Version 0.8.2:

  • Updated ZLib to 1.2.8
  • Updated MiniZip to Nathan Moinvaziri's Version
  • Added test code to zip & unzip up to (slighlty less than) 4 GB: the library is able to create and expand files up to 4,293,387,000 bytes (compressed); use the test with caution, requires 4 GB of free space and around 10 minutes on the iOS simulator

Version 0.8.1:

  • Added support for ARC through Nick Lockwood's ARC Helper

Version 0.8:

  • Updated ZLib to 1.2.7
  • Updated MiniZip to 1.1
  • Added method to get file name from a ZipFile instance

Version 0.7.3:

  • Fixed memory leak in test app

Version 0.7.2:

  • Added variant of writeFileInZipWithName that accepts also a file date
  • Fixed bug with date handling

Version 0.7.1:

  • Fixed a bug in creation of an encrypted zip file

Version 0.7.0:

  • Initial public beta release

Compatibility

Version 0.8.2 has been tested with iOS from 5.1 to 6.1, but should be compatible with earlier versions too. Le me know of any issues that should arise.