在简书写文章,配图很重要,祭出大招
在使用Xcode8开发,并设置语言为Swift3.0之后,Cocopods里面的第三方框架全都炸锅了,会看到下面的错误。
jianshu047.pngjianshu041.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.
你可以向如上图片一样配置项目,当然假如你使用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
最后希望能够解决大家的问题
网友评论