cocoa pods 多项目安装

cocoa pods 多项目安装

一次性搞定 , 以 alamofire 和 kingfisher 为例

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

target ‘popopo’ do
pod 'Kingfisher', '~> 2.4'

//不同的地方 ,加一下 ,就好。

加这里, pod 'Alamofire', '~> 3.4'

end

对照

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!

target '' do
    pod 'Alamofire', '~> 3.4'
end

你可能感兴趣的:(cocoa pods 多项目安装)