我有一个项目,我之前添加了alamofire,但现在当我想添加另一个时,我看到它用alamofire替换新的一个我应该如何避免这个?
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
target 'WeatherApp' do
pod 'TextFieldEffects',
:git => 'https://github.com/raulriera/TextFieldEffects.git'
end
,结果是
删除alamofire并安装TextFieldEffects
答案 0 :(得分:0)
试试这个
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, “9.0”
use_frameworks!
target 'WeatherApp' do
pod 'TextFieldEffects', :git =>'https://github.com/raulriera/TextFieldEffects.git'
pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire.git'
end
甚至这应该有效:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
target 'WeatherApp' do
pod 'TextFieldEffects'
pod 'Alamofire'
end