我正在Swift2.0中制作iOS应用程序。
我尝试通过CocoaPod安装Realm库。
当我在命令行中执行“pod install”时,它是正常的。
但在Xcode项目中,我无法构建我的iOS应用程序。
出现错误并停止构建。
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/otool: can't open file: /Users/satoutakeshi/Library/Developer/Xcode/DerivedData/AlermMA-hczduhcpoaudvlgzjrzioeecipfh/Build/Products/Debug-iphonesimulator/AlermMA.app/Frameworks/Realm.framework/Realm (No such file or directory)
这是我的播客文件
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'RealmSwift'
我应该如何安装Realm?
谢谢你!
2条答案
按热度按时间yqhsw0fo1#
您可能会看到此错误,因为混合Objective-C/Swift应用程序不支持使用
RealmSwift
窗格。请尝试使用Objective-C领域窗格:你仍然可以在你的Swift文件中使用Realm,你只需要将Objective-C语法转换为Swift,当然,
RealmSwift
中的Swift唯一的东西将不可用。webghufk2#
如果你的项目是在Swift中,你必须安装
RealmSwift
才能使用Swift的全部功能:在您的代码中,您必须导入Realm和RealmSwift才能使用所有功能:
编辑:
我更新了这个答案。感谢Donamite指出你只需要在podfile中有'RealmSwift'。