我正在尝试使用Realm和Swift 2.0 我的Podfile非常简单:
source 'https://github.com/CocoaPods/Specs.git'
pod 'AWSS3', '~> 2.2.0'
# Realm Frameworks
use_frameworks!
pod 'RealmSwift', :git => 'https://github.com/realm/realm-cocoa.git', :branch => 'swift-2.0'
但我得到了
[!] Unable to satisfy the following requirements:
- `RealmSwift (from `https://github.com/realm/realm-cocoa.git`, branch `swift-2.0`)` required by `Podfile`
Podfile看起来很好。我很感激任何帮助。
答案 0 :(得分:1)
swift-2.0
分支已经合并为主人。自Swift 2正式发布以来。因此,如果您使用最新的工具链,则不再需要指定swift-2.0
分支。你可以写pod 'RealmSwift'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
pod 'AWSS3', '~> 2.2.0'
pod 'RealmSwift'