这个崩溃是一个阻塞问题,我使用以下步骤来重现这个问题:

创建一个Cocoa Touch框架项目 添加一个swift文件和一个类Dog 为设备构建一个框架 在Swift中创建一个单视图应用程序 导入框架到应用程序项目 从ViewController中的框架实例化swift类 在设备上构建并运行应用程序

应用程序在启动时立即崩溃,这是控制台日志:

dyld: Library not loaded: @rpath/FrameworkTest03.framework/FrameworkTest03
  Referenced from: /var/mobile/Applications/FA6BAAC8-1AAD-49B4-8326-F30F66458CB6/FrameworkTest03App.app/FrameworkTest03App
  Reason: image not found

I have tried to build on iOS 7.1 and 8.0 devices, they both have the same crash. However, I can build an app and run on the simulator fine. Also, I am aware that I can change the framework to form Required to Optional in Link Binary With Libraries, but it did not completely resolve the problem, the app crashed when I create an instance of Dog. The behavior is different on the device and simulator, I suspect that we can't distribute a framework for the device using a beta version of Xcode. Can anyone shed light on this?


当前回答

我不得不(在这里提到的内容之上)将以下一行添加到构建设置选项卡下的Runpath Search Paths: @executable_path /框架

其他回答

在我的情况下,应用程序崩溃只发生在真实的设备和标准库。 我尝试了前面提到的很多步骤,1h后,我只是从实际设备中删除应用程序,然后重新安装。

虽然每个人都在说将框架嵌入到嵌入式二进制文件中,但它仍然不起作用,因为我们在这里错过了一个重要的步骤。

下面是在Embedded binaries标签下添加二进制文件的两个正确步骤:

从General选项卡下的“Linked Frameworks and Libraries”中删除给出错误的框架。 现在只需在Embedded Binaries选项卡下添加已删除的框架,这就是所有需要做的事情。

在设备上运行它,保持微笑;)

如果有开发pod,从模拟器中删除应用程序,从pod中安装-> clean ->再次运行…

在嵌入式二进制文件中添加框架

然后清洁和建造。

对我来说,我必须把XcodeKit.framework从“不嵌入”->“嵌入&签名”