GZIP
A simple NSData category for gzipping/unzipping data in iOS and Mac OS
Install / Use
/learn @nicklockwood/GZIPREADME
Purpose
GZIP is category on NSData that provides simple gzip compression and decompression functionality.
Supported OS & SDK Versions
- Supported build target - iOS 12.0 / Mac OS 10.14 (Xcode 10.1)
- Earliest supported deployment target - iOS 11.0 / Mac OS 10.14.6
- Earliest compatible deployment target - iOS 11.0 / Mac OS 10.6
NOTE: 'Supported' means that the library has been tested with this version. 'Compatible' means that the library should work on this iOS version (i.e. it doesn't rely on any unavailable SDK features) but is no longer being tested for compatibility and may require tweaking or bug fixes to run correctly.
ARC Compatibility
The GZIP category will work correctly in either ARC or non-ARC projects without modification.
Thread Safety
All the GZIP methods should be safe to call from multiple threads concurrently.
Installation
The simplest way to install GZIP is to use CocoaPods, by adding the following to your Podfile:
pod 'GZIP', '~> 1.3.2'
Alternatively you can use Carthage, or if you prefer to install manually, drag the GZIP.xcodeproj into your project or workspace and include GZIP.framework under the linked libraries in your target.
NSData Extensions
- (NSData *)gzippedDataWithCompressionLevel:(float)level;
This method will apply the gzip deflate algorithm and return the compressed data. The compression level is a floating point value between 0.0 and 1.0, with 0.0 meaning no compression and 1.0 meaning maximum compression. A value of 0.1 will provide the fastest possible compression. If you supply a negative value, this will apply the default compression level, which is equivalent to a value of around 0.7.
- (NSData *)gzippedData;
This method is equivalent to calling gzippedDataWithCompressionLevel: with the default compression level.
- (NSData *)gunzippedData;
This method will unzip data that was compressed using the deflate algorithm and return the result.
- (BOOL)isGzippedData;
This method will return YES if the data is gzip-encoded.
Related Skills
node-connect
343.1kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
90.0kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
343.1kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
343.1kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
