Xcode CocoaPods使用
iOS 2018-06-30 19:16:46

pod init自动生成Podfile文件或者touch Podfile创建Podfile文件

 

1.png

 

2.png

3.png

名称为: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

 

 

本文来自于:http://www.yoyo88.cn/study/swift/324.html

Powered by yoyo苏ICP备15045725号