0

我使用 Cocoapods 安装了 RealmSwift。安装成功,但编译时显示96错误如下图

我已经尝试了我在互联网上找到的所有解决方案。我已经解散了 pod 并再次安装,但我不断收到相同的错误。请帮忙!

4

1 回答 1

1

看起来 Xcode 正在尝试针对错误版本的 Swift 运行 Realm 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

如果仍然无法为您解决问题,请使用您的 podfile 副本更新您的问题,以便我们对其进行审核。:)

于 2017-01-31T07:35:17.550 回答