我想使用 cocoapods 为我的 Xcode 项目安装带有 ImageRow 的 Eureka。
我正在使用 Swift4 及之后
pod 'Eureka', '~> 3.0’
pod 'ImageRow', '~> 2.0'
我得到了由于错误而无法编译的项目。
我找到了只为 swift 4 安装 Eureka 的方法
pod 'Eureka', :git => 'https://github.com/xmartlabs/Eureka.git', :commit => 'a238bbd'
但在这种情况下,我无法安装 ImageRow 因为它说
- `Eureka (from `https://github.com/xmartlabs/Eureka.git`, commit `a238bbd`)` required by `Podfile`
- `Eureka (= 3.0)` required by `ImageRow (2.0.0)`
ps 现在 Swift 4 终于和 Xcode 9 一起发布了