FAU-Inf2 / Godzippa

Godzippa! - GZip Compression / Decompression Category for NSData

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Godzippa!

gzip Compression / Decompression Category for NSData & NSFileManager

Example Usage

NSData

NSData *originalData = [@"Look out! It's..." dataUsingEncoding:NSUTF8StringEncoding];
NSData *compressedData = [originalData dataByGZipCompressingWithError:nil];
NSData *decompressedData = [compressedData dataByGZipDecompressingDataWithError:nil];
NSLog(@"%@ %@", [NSString stringWithUTF8String:[decompressedData bytes]], @"Godzippa!");

NSFileManager

NSFileManager *fileManager = [NSFileManager defaultManager];
NSURL *file = [NSURL fileURLWithPath:@"/path/to/file.txt"];
NSError *error = nil;

[fileManager GZipCompressFile:file
        writingContentsToFile:[file URLByAppendingPathExtension:@"gz"]
                        error:&error];

Requirements

  • zlib - In the "Link Binary With Libraries" Build Phase of your Target, add libz.dylib

Contact

Mattt Thompson

License

Godzippa! is available under the MIT license. See the LICENSE file for more info.

About

Godzippa! - GZip Compression / Decompression Category for NSData

License:MIT License


Languages

Language:Objective-C 98.3%Language:Ruby 1.7%