使用RealmSwift-0.97.0和watchos2,我第一次尝试运行我的Watchkit-App时出现以下错误:
dyld: Library not loaded: @rpath/Realm.framework/Realm
Referenced from: /Users/....
Reason: image not found
可能是什么错误?
我正在使用以下podfile将RealmSwift合并到我的项目中:
xcodeproj 'iSquash.xcodeproj'
workspace 'iSquash.xcworkspace'
platform :ios, '9.0'
inhibit_all_warnings!
source 'https://github.com/artsy/Specs.git'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
link_with 'iSquash', 'iSquash WatchKit Extension'
def shared_pods
pod 'Realm'
pod 'RealmSwift'
end
target 'iSquash' do
shared_pods
end
target 'iSquashTests' do
shared_pods
end
target 'iSquash WatchKit Extension' do
platform :watchos, '2.0'
shared_pods
end
我成功使用的相同podfile(使用Watchos1.2和早期版本的RealmSwift ......) 任何帮助赞赏!谢谢!