Xcode CocoaPods使用
pod init自动生成Podfile文件或者touch Podfile创建Podfile文件
名称为:Podfile
在新版的xcode中,一个项目默认包含了
工程目录:四个文件夹(3个Target文件夹:(工程名字、单元测试、UI测试)、Products)
所以在使用Pod下载的时候 ,需要指定target,一般就是第一个文件夹,工程名字
报错:
[!] The dependency `Just` is not used in any concrete target.
就是因为未指定target,加上:
target "travelApp" do
例:
platform :ios, '11.4'
use_frameworks!
target 'travelApp' do
pod 'Just', :git => 'https://github.com/JustHTTP/Just.git', :branch => 'swift-4'
pod 'Kingfisher'
pod 'ESTabBarController-swift'
end
保存后,在工程目录执行:
pod update --no-repo-update
下一篇 swift4安装Just