美文网首页iOS 开发 iOS程序猿
Swift3.0 Use Legacy Swift Langua

Swift3.0 Use Legacy Swift Langua

作者: 徐佳斌 | 来源:发表于2016-09-24 17:05 被阅读506次

    在简书写文章,配图很重要,祭出大招

    在使用Xcode8开发,并设置语言为Swift3.0之后,Cocopods里面的第三方框架全都炸锅了,会看到下面的错误。

    jianshu047.png

    “Use Legacy Swift Language Version” (SWIFT_VERSION) is required to be configured correctly for targets which use Swift. Use the [Edit > Convert > To Current Swift Syntax…] menu to choose a Swift version or use the Build Settings editor to configure the build setting directly.

    jianshu041.png

    你可以向如上图片一样配置项目,当然假如你使用Cocopods管理第三方框架,你可以利用stackoverflow上的另一种方法来解决
    在podfile文件最下面添加如下代码,然后重新pod install 问题就解决了

    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
    
    jianshu005.png

    最后希望能够解决大家的问题

    相关文章

      网友评论

        本文标题:Swift3.0 Use Legacy Swift Langua

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