post_install do |installer|
installer.pods_project.targets.each do |target|
if ['Alamofire','OtherPod','AnotherPod'].include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.0'
end
end
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if ['Alamofire','OtherPod','AnotherPod'].include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_SWIFT3_OBJC_INFERENCE'] = 'On'
end
end
end
end
target 'Runner' do
use_frameworks! # <--- add this single line
# Prepare symlinks folder. We use symlinks to avoid having Podfile.lock
# referring to absolute paths on developers' machines.
system('rm -rf .symlinks')
system('mkdir -p .symlinks/plugins')
第二次修改:*
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings['SWIFT_VERSION'] = '3.2' # <--- add this single line
end
end
end
8条答案
按热度按时间g0czyy6m1#
在导航器选择栏中,点按放大镜,然后搜索“
SWIFT_VERSION
“,您将找到项目中可以相应调整swift版本的位置。zphenhs42#
你不能。XCode 8.2是支持Swift 2.3的最后一个版本。你必须更新到Swift 3或使用Xcode 8.2。
kpbwa7wx3#
在我的例子中,我选择了Pod,并为特定的Pod更改了swift版本。这对我很有效。
gywdnpxw4#
要以编程方式更改swift版本的pod,您可以将其添加到您的Podfile中
在Swift 4中,如果您也使用了objective-c,
您可以打开@objc推理,以便swift项目可以在objective-c上正确运行。
hsgswve45#
您不能,因为XCode 8.2是支持Swift 2.3的最后一个版本。您必须将您的代码更新到Swift 3或使用Xcode 8.2。
yzuktlbb6#
该死的Xcode,现在我必须迁移到Swift 3.0。它在使用Swift 2.3打开或构建旧项目时清楚地显示了此警报,所以我建议让我们迁移:(:(
w8biq8rn7#
将Swift语言版本更改为构建设置中支持的版本
6g8kf2rb8#
已更新,对我有效:
**第一步:**进入你的ios文件夹,打开podfile,做以下简单的更改;
**第2步:**从Xcode打开您当前的工作项目,即转到ios文件夹并打开您的ProjectName.xcworkspace文件;
**步骤3:**打开终端并使用以下命令再次安装;
如果项目已经打开,请关闭它,然后再次打开,即您ProjectName.xcworkspace文件,进行清理和构建