|
8 anos atrás | |
---|---|---|
.. | ||
SSZipArchive | 8 anos atrás | |
LICENSE.txt | 8 anos atrás | |
README.md | 8 anos atrás |
ZipArchive is a simple utility class for zipping and unzipping files on iOS and Mac.
The main release branch is configured to support Objective C and Swift 3. There is a 'swift23' branch which is the latest branch but marked to compile for Swift 2.3.
pod install SSZipArchive
github "ZipArchive/ZipArchive"
SSZipArchive
and minizip
folders to your project.libz
library to your targetSSZipArchive requires ARC.
// Create
[SSZipArchive createZipFileAtPath: zipPath withContentsOfDirectory: sampleDataPath];
// Unzip
[SSZipArchive unzipFileAtPath:zipPath toDestination: unzipPath];
// Create
SSZipArchive.createZipFileAtPath(zipPath, withContentsOfDirectory: sampleDataPath)
// Unzip
SSZipArchive.unzipFileAtPath(zipPath, toDestination: unzipPath)
SSZipArchive is protected under the MIT license and our slightly modified version of Minizip 1.1 is licensed under the Zlib license.
Big thanks to aish for creating ZipArchive. The project that inspired SSZipArchive. Thank you @randomsequence for implementing the creation support tech and to @johnezang for all his amazing help along the way.