安装 Realm Swift 后,我在 Xcode 中运行我的测试程序时看到以下错误:
dyld: Library not loaded: @rpath/libswiftCore.dylib
Referenced from: /Users/(*****)/Library/Developer/CoreSimulator/Devices/*****/data/Containers/Bundle/Application/*****/My.app/Frameworks/RealmSwift.framework/RealmSwift
Reason: Incompatible library version: RealmSwift requires version 1.0.0 or later, but libswiftCore.dylib provides version 0.0.0
我试过了:
- 清理构建文件夹
- 重启 Xcode
- 启用 Embedded Content Contains Swift Code build设置。
我正在使用 Xcode 7.2.1 和 Swift 2.1.1,并且正在使用其动态框架集成 Realm。
Best Answer-推荐答案 strong>
Apple 声明您不能混合和匹配使用不同版本的 Swift 构建的二进制文件:https://developer.apple.com/swift/blog/?id=2
所以你有两个选择:
- 按照 https://realm.io/docs/swift/latest/#installation 中的说明从源代码构建 Realm Swift
- 使用与您的项目使用相同版本的 Swift 构建的 Realm Swift 的预构建版本。 0.98.5 是使用 Swift 2.1.1 构建的最后一个版本:https://github.com/realm/realm-cocoa/releases/tag/v0.98.5 . 0.98.6 及更高版本是使用 Swift 2.2 构建的。
关于ios - 集成 Realm Swift 后 libswiftCore.dylib 的库版本不兼容,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/36250019/
|