0

Xcode 8.1 を使用しています。Cocoa Pods を使用してプロジェクトに 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 に変更しても問題は解決しません。

4

1 に答える 1

1

ポッド レポに問題があると思います。セットアップを再試行します。

pod repo remove master
pod setup
pod install
于 2016-11-19T23:16:54.307 に答える