我想在iOS中播放Flac文件,并从以下位置下载代码:SFBAudioEngine

我添加了适用于Mac OS的框架,它成功构建,但是当我运行应用程序时,它崩溃并给出

dyld: Library not loaded: @rpath/dumb.framework/Versions/A/dumb
Referenced from: /Users/Library/Developer/Xcode/DerivedData/SFBAudioEngine-frrtbwxsqekjtmekpdfikqaqcsso/Build/Products/Debug/SimplePlayer.app/Contents/MacOS/SimplePlayer
Reason: image not found


当我试图为iOS应用程序构建时,它给出了错误

Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/libtool failed with exit code 1


请帮我运行这个程序。

最佳答案

看来哑框架没有被加载。您需要确保它位于计算机上的以下路径中:

@rpath/dumb.framework


并在运行您的应用程序之前确保此文件存在:

@rpath/dumb.framework/Versions/A/dumb

关于iphone - SFBAudioEngine的编译问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9059815/

10-11 14:49