缺少快速语言版本3.2

时间:2018-11-04 15:03:27

标签: swift cocoapods

我注意到Swift语言版本中缺少Swift 3.2。我的项目中有需要在3.2上运行的pod。我正在使用Xcode 10.0和Swift 4.2 ...从我的研究中,我应该能够在pod文件中更改Swift语言版本,但是我这样做的尝试没有成功。有什么方法可以让3.2在Xcode 10的pod文件中运行?enter image description here

这是我在Pod文件中尝试过的内容

 # force the sub specs in the array below to use swift version 3.2
post_install do |installer|
    installer.pods_project.targets.each do |target|
        if ['PromiseKit'].include? target.name
            target.build_configurations.each do |config|
                config.build_settings['SWIFT_VERSION'] = '3.2'
            end
        end
    end
end

0 个答案:

没有答案