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 '<Your Target Name>' do
pod 'Alamofire', '~> 3.4'
end