我正在使用Xcode 8.1。我正在尝试使用Cocoa Pod在我的项目中安装RealmSwift。 Cocoa Pods版本是1.1.1。但是,我收到以下错误:
Unable to find a specification for 'RealmSwift'
我的Podfile的内容如下:
platform :ios, '9.0'
target 'Validator' do
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
pod 'RealmSwift'
end
# Pods for Validator
target 'ValidatorTests' do
inherit! :search_paths
# Pods for testing
use_frameworks!
pod 'RealmSwift'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '2.3' # or '3.0'
end
end
end
我做错了什么?即使iOS版本更改为10.0,问题仍然存在。
答案 0 :(得分:1)
我认为您的pod repo存在问题。尝试重新设置:
pod repo remove master
pod setup
pod install