继续努力
在终端执行一下命令
sudo gem install cocoapods
为了验证CocoaPods是否可以使用,可以验证一下
pod search Alamofire
先用xcode创建一个项目,然后关闭xcode
进入Mac终端 cd到新建项目下执行
pod init
此时会在项目里面产生一个podfile文件,点开文件进行编辑
例如天气:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
inhibit_all_warnings!
target 'Weather' do
use_frameworks!
# Pods for Weather
pod 'SnapKit'
pod "ESTabBarController-swift"
pod 'EachNavigationBar'
pod 'DNSPageView'
pod 'HandyJSON', :git => 'https://github.com/alibaba/HandyJSON.git', :branch => 'dev_for_swift5.0'
pod 'SwiftyJSON'
pod 'FSCalendar'
pod 'Alamofire'
pod 'AlamofireImage'
pod 'AlamofireObjectMapper'
pod 'SwiftFCXRefresh'
end
此时就可以下载这些第三方库了
在终端上执行
pod install
最后要注意,打开项目要用XXX.xcworkspace ,而不是之前的XXX.xcodeproj文件