我无法使用已安装的 CocoaPods 成功运行 WatchKit 应用程序,并且出现“dyld:未加载库...原因:未找到图像”错误。
环境如下:Swift 2.0、WatchKit 2.0、CocoaPods 0.38.2、Xcode 7 Beta 4 以及一个使用一些内部 CocoaPods 的项目,我为一个带有 WatchKit 扩展的 iPhone 应用程序开发。
我已经构建了许多内部使用的 CocoaPods,其中包含我想从我的主应用程序和 WatchKit 扩展中调用的公共代码。以下是 Pod 文件:
source 'https://github.com/CocoaPods/Specs.git'
source 'http://<local-git>/podspecs.git'
use_frameworks!
target 'Destinations511' do
platform :ios, '9.0'
pod 'GoogleMaps'
pod 'APIKit', :path => '~/Documents/Libraries/APIKit'
pod 'DestinationsKit', :path => '~/Documents/Libraries/DestinationsKit'
end
target 'Destinations511 WatchKit Extension' do
platform :watchos, '2.0'
pod 'APIKit', :path => '~/Documents/Libraries/APIKit'
pod 'DestinationsKit', :path => '~/Documents/Libraries/DestinationsKit'
end
我可以构建我的主应用程序并按预期运行。我可以编译 watch kit 应用程序,但是当它运行时,我得到以下信息:
dyld: Library not loaded: @rpath/APIKit.framework/APIKit Referenced from (...) Reason: image not found.
我已经尝试过针对其他 dylib 问题的解决方案,包括:
- 确保我的 Target->Build Settings->Runpath Search Paths 包括 @executable_path/Frameworks
- 尝试将 APIKit.framework 添加到 Target->General->Embedded Binaries (由于某种原因,当我选择它时甚至不会添加框架)
- 被 Podfile 解构并重建。
- 将 APIKit.framework 添加到 Target->General->Linked Frameworks and Libraries
当我在 Xcode 中查看我的 Pods 目录时,我看到每个框架的两个实例(我假设这是因为有一个用于应用程序,一个用于手表)。即使我已成功构建并运行 iPhone 应用程序,它们都保持红色。
可能相关但不确定如何解决的是,当我编译时(无论目标如何),我会收到许多警告,如下所示:
ld: warning: linking against dylib not safe for use in application extensions: /Users/dan/Library/Developer/Xcode/DerivedData/MyProject-dlixiemzyqyquocjthlseirhdxcm/Build/Products/Debug-watchsimulator/Pods_MyProject_WatchKit_Extension.framework/Pods_MyProject_WatchKit_Extension
为了完整,这里是 APIKit 的 PodSpec
Pod::Spec.new do |s|
s.name = "APIKit"
s.version = "1.1"
s.summary = "APIKit provides the basic classes and methods common to a number of our apps"
s.homepage = "http://.../apikit.git"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "me" => "me@me.com" }
s.platform = :ios
s.ios.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.source = { :git => "http://my-git-location/apikit.git", :tag => "#{s.version}" }
s.source_files = "APIKit"
s.frameworks = "UIKIt", "CoreLocation"
s.requires_arc = true
end