Podfile 未下载最新 Swift 3 版本 pods

Podfile not downloading latest Swift 3 version of pods

自更新到 Swift 3 后,我无法安装 pods 的 Swift 3 版本。例如,ReadabilityKit 在 master 分支上有 Swift 3 支持。在他们的自述文件中,他们声明要获得 Swift 3 支持,您必须简单地执行以下操作:

platform :ios, '8.0'
use_frameworks!

target 'MyApp' do
    pod 'ReadabilityKit'
end

我还包括以下行: source 'https://github.com/CocoaPods/Specs.git' 在播客文件的顶部。

我在一个全新的 Swift 3 项目中复制了我所看到的问题,当我执行 pod install 时,我得到了旧版本的回购协议。因此,当在 Xcode 中打开项目时,它会提供将 pod 的代码转换为 Swift 3,或者如果我构建它会抛出一堆错误,因为它不在 Swift 3 中。我最终不得不像这样在 podfile 中列出它:

pod 'ReadabilityKit', :git => 'https://github.com/exyte/ReadabilityKit.git', :branch => 'master'`

这是默认设置 - 主分支上的常规回购。但直到现在,一旦我 运行 pod install,它是否表明它升级了 pod,并且它可以正常工作。这不是 ReadabilityKit 独有的 - 它发生在每个 pod 上,我到目前为止已经尝试过 Swift 3 支持。

我在 Ruby 2.3.0 上使用 Cocoapods 1.0.1。

您可以尝试将此行添加到您的播客文件的末尾:

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['SWIFT_VERSION'] = '3.0'
    end
  end
end

或者尝试将 cocoapods 更新到预发布版本:

sudo gem install cocoapods --pre