使用 Xcode 8.2.1 和 Swift 3 编译 RealmSwift 时出错
Error compiling RealmSwift with Xcode 8.2.1 and Swift 3
我使用 Cocoa 安装了 RealmSwiftpods。安装成功,编译时显示96错误as shown below
我已经尝试了在互联网上找到的所有解决方案。我已经分解了 pods 并再次安装,但我不断收到相同的错误。请帮忙!
看起来 Xcode 正试图 运行 Realm Swift 对抗 Swift 的错误版本。我建议您尝试几件事:
- 确保 运行
pod spec update
将 Realm 的本地副本更新到最新版本。
- 确保您已遵循 Realm CocoaPods 说明并将其添加到 podfile 的底部:
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0.2'
end
end
end
如果仍然不能解决您的问题,请使用您的播客文件副本更新您的问题,以便我们进行审核。 :)
我使用 Cocoa 安装了 RealmSwiftpods。安装成功,编译时显示96错误as shown below
我已经尝试了在互联网上找到的所有解决方案。我已经分解了 pods 并再次安装,但我不断收到相同的错误。请帮忙!
看起来 Xcode 正试图 运行 Realm Swift 对抗 Swift 的错误版本。我建议您尝试几件事:
- 确保 运行
pod spec update
将 Realm 的本地副本更新到最新版本。 - 确保您已遵循 Realm CocoaPods 说明并将其添加到 podfile 的底部:
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0.2'
end
end
end
如果仍然不能解决您的问题,请使用您的播客文件副本更新您的问题,以便我们进行审核。 :)