您好,欢迎来到知库网。
搜索
您的当前位置:首页CocoaPods 给每个库单独指定 Swift 版本教程

CocoaPods 给每个库单独指定 Swift 版本教程

来源:知库网

苹果每年都更新 Swift 版本,但是平常项目中使用的一些开源库却不能及时更新,使用那就需要一部分库继续使用 Swift3.2 版本,一部分使用 Swift4,那么在 Podfile 中应该这么写:

# Swift 版本声明
  post_install do |installer|
        installer.pods_project.targets.each do |target|
            if ['库的名字1','Jinkey'].include? target.name
                target.build_configurations.each do |config|
                    config.build_settings['SWIFT_VERSION'] = '4.0'
                    config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
                end
            else
                target.build_configurations.each do |config|
                    config.build_settings['SWIFT_VERSION'] = '3.2'
                    config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
                end
            end
        end
    end

Copyright © 2019- zicool.com 版权所有 湘ICP备2023022495号-2

违法及侵权请联系:TEL:199 1889 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务