我目前正在尝试在我的Xcode项目中安装这些Pod,但是当我尝试pod install
时,我会看到以下屏幕。在尝试运行我的项目时,我在xCode中收到此消息,所以我想我会尝试重新安装pod。但是得到以下错误。
platform :ios, ‘8.0’
use_frameworks!
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.1'
pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git'
pod 'Alamofire', '~> 3.0'
pod 'GooglePlacesAutocomplete'
pod 'Spring', :git => 'https://github.com/MengTo/Spring.git', :branch => 'swift2'
pod 'DropDown'
pod 'AlamofireImage', '~> 2.0'
答案 0 :(得分:3)
如果您使用Cocoapods v0.39,则需要为您的pod定义目标
target :'nameOfTheScheme' do
pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git'
pod 'Alamofire', '~> 3.0'
pod 'GooglePlacesAutocomplete'
pod 'Spring', :git => 'https://github.com/MengTo/Spring.git', :branch => 'swift2'
pod 'DropDown'
pod 'AlamofireImage', '~> 2.0'
end