Setting Up CocoaPods
The following are instructions on how to install CocoaPods to your Xcode project, which will be useful when we start our lectures on networking and external libraries.
CocoaPods
Setting Up CocoaPods
sudo gem install cocoapodspod initplatform :ios, '13.0'
# ignore all warnings from all pods
inhibit_all_warnings!
target ‘SampleProject’ do
use_frameworks!
# Pods for SampleProject
pod 'Alamofire'
pod ‘SnapKit'
end Some Useful CocoaPods
Last updated
Was this helpful?