RealmSwift和watchos2

时间:2016-01-05 21:40:27

标签: swift realm watch-os-2

使用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 ......) 任何帮助赞赏!谢谢!

1 个答案:

答案 0 :(得分:0)

找到了解决方案......

不再需要早期版本的RealmSwift和watchos1.0所需的旧Run-Script!

enter image description here