0

我刚刚从 xmartslab 安装了 Eurika 库我已经用谷歌搜索了这个问题,不幸的是什么也没找到

像往常一样将它添加到我的 Podfile 中:

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

target 'Project' do
pod 'Alamofire', '~> 3.0'
pod 'SDWebImage', '~>3.7'    
pod 'ObjectMapper', '~> 1.1'
pod 'Eureka', '~> 1.5'
pod 'SDWebImage', '~>3.7'
end

安装后出现一堆错误:

在此处输入图像描述 什么会导致这个问题。会不会与其他库不兼容?

4

1 回答 1

1

我想您使用的是 Xcode 7.2 或更早版本。您必须升级到 Xcode 7.3 或将 Podfile 更改为pod 'Eureka', '~> 1.4.1'

于 2016-03-23T22:51:02.867 回答