我使用 Cocoapods 安装了 RealmSwift。安装成功,但编译时显示96错误如下图
我已经尝试了我在互联网上找到的所有解决方案。我已经解散了 pod 并再次安装,但我不断收到相同的错误。请帮忙!
看起来 Xcode 正在尝试针对错误版本的 Swift 运行 Realm Swift。我建议您尝试几件事:
pod spec update
以将 Realm 的本地副本更新到最新版本。 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
如果仍然无法为您解决问题,请使用您的 podfile 副本更新您的问题,以便我们对其进行审核。:)