美文网首页
The “Swift Language Version” (SW

The “Swift Language Version” (SW

作者: 米修斯_ | 来源:发表于2019-06-12 21:12 被阅读0次
    
    The “Swift Language Version” (SWIFT_VERSION) build setting must be set to a supported value for targets which use Swift. Supported values are: 3.0, 4.0, 4.2. This setting can be set in the build settings editor.
    
    

    出现这个原因是 ,因为项目使用了Cocopods,项目是用低版本的Swfit 开发,在Xcode 升级后继续开发,这时导入新的库是依赖高版本的Swift。Cocopods 引入的库都会有一个Swift版本。

    post_install do |installer|
      installer.pods_project.targets.each do |target|
        target.build_configurations.each  do |config|
          config.build_settings['SWIFT_VERSION'] = '4.0'
        end
      end
      end
    
    // 这就话的意思限定每个Pod都是在4.0下编译
    
    

    相关文章

      网友评论

          本文标题:The “Swift Language Version” (SW

          本文链接:https://www.haomeiwen.com/subject/oxwrfctx.html