我正在尝试为swift安装Realm,期望终端不断给我这个错误:Unable to find a specification for RealmSwift (~> 0.97)
。我的pod文件的布局与他们推荐的完全一致。这是我的pod文件:
target 'AppName' do
use_frameworks!
pod 'RealmSwift', '~> 0.97'
end
target 'AppName Tests' do
use_frameworks!
pod 'RealmSwift', '~> 0.97'
end
target 'AppName UITests' do
end
target 'AppName Keyboatd' do
end
target 'AppName Keyboard' do
end
答案 0 :(得分:0)
我只是尝试使用Realm Objective-C,它对我来说很好。那很奇怪。
可能的是,由于该版本实际上被称为“0.97.0”,因此可能需要包含额外的' .0'。
或者,是否完全有必要在那里包含版本说明符?您可以将其关闭,您仍然可以获得最新版本的Realm(几天前发布了0.97.1!)