使用Xcode 7.1,Cocoapods 0.39.0(最新版本)
尝试使用Cocoapods安装AlamofireObjectMapper,并按照GitHub
的说明进行操作以下是我的PodFile的代码:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'Alamofire', '~> 2.0'
pod 'AlamofireObjectMapper', '~> 0.7'
pod 'ObjectMapper', '~> 0.15'
target 'CP3' do
pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git',:branch => 'xcode7'
end
我在终端中收到以下错误:
错误
奇怪的是,如果我只是评论 Podfile 中的' AlamofireObjectMapper '行,那么其他一切(SwiftJSON,ObjectMapper和Alamofire)运行正常。不知道为什么会发生这种情况。
答案 0 :(得分:0)
我使用
卸载了cocoapods sudo gem install cocoapods
重新安装了所有内容。终于工作了。