Chilkat MacOS Objective-C / Swift Library Downloads

v9.5.0.97 28-Jan-2024sha256: c82d8d62c1f66ee5f44b858104f1a5eeae71bd3df0560a3c624ef56ff947c1c2
Chilkat Universal Objective-C Library for MacOS

Using Chilkat in Swift Applications

Go to the TestChilkatSwift XCode Project on GitHub for a sample XCode Swift project with detailed instructions for getting started using Chilkat in a Swift application.

General Install Instructions

  1. Download and unzip to any directory.
  2. The Objective-C headers are contained in include directory.
  3. The static and dynamic libs are located in the lib directory.
  4. See these Important Notes for Compiling and Linking Objective-C Programs
  5. Go to the TestChilkatSwift XCode Project on GitHub for a sample XCode Swift project with detailed instructions for getting started using Chilkat in a Swift application.
  6. This download is both the trial and full version.
    Chilkat libraries are fully functional for 30-day evaluations.

  7. Release Notes are available on the Chilkat blog.

How to Distribute a dylib with your Application

(This information is general and applies to any dylib on Mac OS X.) On Mac OS X, a dynamic library (dylib) has an "install name". The install name is a path baked into the dynamic library that says where to find the library at runtime. When an application is linked against a dylib, the path is saved in the app's binary so that it can find the dylib at runtime.

The install name of a dylib can be viewed by using otool. For example:

$ otool -D libchilkatCocoaDyn.dylib
libchilkatCocoaDyn.dylib:
/usr/local/lib/libchilkatCocoaDyn.dylib

This means that unless the DYLD_LIBRARY_PATH environment variable is set to allow the runtime linker find the dylib, the dylib must be placed in the exact location as specified by the install name.

However, the install name of a dylib can be changed by using the install_name_tool utility. The @loader_path keyword can be used to make it relative to an install directory.

Chilkat recommends becoming familiar with the install_name_tool command and it's various options. For example, this command changes the install name of libchilkatCocoaDyn.dylib to be relative to the location of the binary using it:

$ install_name_tool -id "@loader_path/dylibs/libchilkatCocoaDyn.dylib" libchilkatCocoaDyn.dylib