The dominant dependency manager for iOS, tvOS, watchOS, and macOS.
CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects. It simplifies the process of integrating third-party libraries and frameworks into your projects, making it easier to manage dependencies and keep your projects up-to-date.
Here's a basic example of how to use CocoaPods:
# Podfile platform :ios, "13.0" # Or your target iOS version target 'MyProject' do use_frameworks! pod 'Alamofire', '~> 5.0' end
To install the Alamofire pod, run the following command in your terminal:
pod install