Dependencies

Jun 5

How To Add Dependencies With The Swift Package Manager

The Swift Package Manager is a dependency manager built straight into Xcode. Apple added official support for it in Xcode 11 and it has been getting better ever since. Using SPM means all dependencies...

May 30

How To Manage Dependencies With Carthage

Carthage is a dependency manager that makes using third party dependencies in your project easy. It’s slightly different to its more popular counterpart Cocoapods, where instead of creating an X...

May 22

How To Manage Dependencies With Cocoapods

Dependencies allow us to use other people’s code in our own projects. A good way to add dependencies to your own Xcode project is to use a dependency manager. In this guide, we will be using Coc...