Chilkat macOS Objective-C Library — Downloads
A native static library for macOS, usable from Objective-C and Swift (via a bridging header). The download is the full-version product download — fully functional for a 30-day evaluation.
Jump to: Download What's in the download Universal static library Install Compiling & linking
Download
What's in the download
The download is a .zip archive. Unzip it to any directory — there
is no installer. The layout is:
chilkat-macosx-universal-objc/ ├─ lib/ │ └─ libchilkatObjc.a universal static library (arm64 + x86_64) ├─ include/ Objective-C headers (Cko*.h) ├─ license.pdf ├─ pcre2-license.pdf └─ quickjs-license.pdf
lib/libchilkatObjc.a— the Chilkat static library. It is already a universal binary, so there are no architecture slices to combine.include/— the Objective-C interface (classes prefixedCko, e.g.CkoJsonObject). Swift code uses these through a bridging header.
Universal static library
libchilkatObjc.a contains both architecture slices, so a single library
links and runs natively on Apple Silicon and Intel Macs — nothing to build or
combine:
| Slice | Runs on |
|---|---|
arm64 | Apple Silicon Macs (M-series) |
x86_64 | Intel Macs |
Install instructions
-
Unzip the download
Extract the archive to any directory. There is no “install”.
-
Add the header search path
Add the
includedirectory to Header Search Paths in your Xcode project. (For Swift, also import theCko*headers you use in your bridging header.) -
Link the library
In Build Phases → Link Binary With Libraries, click +, then Add Other…, and select
libchilkatObjc.a. -
Add the required linker flags and frameworks
See the compiling & linking guide below for the exact Other Linker Flags and system frameworks to add.
Compiling & linking
For the required linker flags, system frameworks, and notes for both Objective-C and Swift, see:
Important Notes for Compiling and Linking macOS Objective-C / Swift Programs
- Release notes: on the Chilkat blog.
- Reference documentation: Chilkat Documentation.
- Sample code: Objective-C and Swift examples.