dyld:库未加载:@rpath/SwiftyJSON.framework/SwiftyJSON

dyld: Library not loaded: @rpath/SwiftyJSON.framework/SwiftyJSON

我一直在使用模拟器来测试我的应用程序。今天我决定在模拟器中使用其他设备对其进行测试,令我惊讶的是它在某些设备上启动时崩溃,而在其他设备上却运行良好

我的应用程序构建运行于:

我的应用崩溃于:

我遇到的错误是:

dyld:库未加载:@rpath/SwiftyJSON.framework/SwiftyJSON

Referenced from: /Users/data/Library/Developer/CoreSimulator/Devices/2ACCFF1F-D35F-444A-B709-2A41AC9CC7D2/data/Containers/Bundle/Application/DA7480F6-4032-4EB5-A51F-5D028088FFE1/Demo Mobile.app/Demo Mobile
Reason: no suitable image found.
(lldb) 

有时候我什至能得到更多信息:

Referenced from: /Users/data/Library/Developer/CoreSimulator/Devices/2ACCFF1F-D35F-444A-B709-2A41AC9CC7D2/data/Containers/Bundle/Application/DA7480F6-4032-4EB5-A51F-5D028088FFE1/Demo Mobile.app/Demo Mobile
Reason: no suitable image found.  Did find:
/Users/data/Library/Developer/CoreSimulator/Devices/2ACCFF1F-D35F-444A-B709-2A41AC9CC7D2/data/Containers/Bundle/Application/DA7480F6-4032-4EB5-A51F-5D028088FFE1/Demo Mobile.app/Frameworks/SwiftyJSON.framework/SwiftyJSON: mach-o, but wrong architecture
/Users/data/Library/Developer/CoreSimulator/Devices/2ACCFF1F-D35F-444A-B709-2A41AC9CC7D2/data/Containers/Bundle/Application/DA7480F6-4032-4EB5-A51F-5D028088FFE1/Demo Mobile.app/Frameworks/SwiftyJSON.framework/SwiftyJSON: mach-o, but wrong architecture
/Users/data/Library/Developer/CoreSimulator/Devices/2ACCFF1F-D35F-444A-B709-2A41AC9CC7D2/data/Containers/Bundle/Application/DA7480F6-4032-4EB5-A51F-5D028088FFE1/Demo Mobile.app/Frameworks/SwiftyJSON.framework/SwiftyJSON: mach-o, but wrong architecture
(lldb) 

我通过 Cocoapods 安装了 SwiftyJson。我的 Podfile 包含

platform :ios, '8.0'
use_frameworks!

pod 'SQLite.swift', git: 'https://github.com/stephencelis/SQLite.swift.git'

target 'thinx Mobile' do
    pod 'SwiftyJSON', '~> 2.2.1'
end

我试过了:

搜索将近一天后,我从头开始重建项目(新项目、新 podfile、新文件,但在每个文件中复制粘贴原始项目的源代码)应用程序现在编译并在每个上完美运行模拟器!没有错误。

但我在实际设备上仍然遇到类似的错误(但原因不同)。我关闭了这个问题,但有一个针对该问题的后续问题:.

这个问题与 iOS app with framework crashed on device, dyld: Library not loaded, Xcode 6 Beta 有关,它解决了这个问题,并且是对我想说的这种错误的一般答案

我在用 Xcode 8.0 (Swift 3.0) 和 SwiftyJSON 3.1.3

写这篇 post 的时候经历了这一点