我尋求幫助的這個錯誤在Xcode失敗:Xcode的鏈接器命令,退出代碼爲1(使用-v看看調用)
error: linker command failed with exit code 1 (use -v to see invocation)
Ld: library not found for -lPods-Audioplayer
clang: error: linker command failed with exit code 1 (use -v to see invocation)
我尋求幫助的這個錯誤在Xcode失敗:Xcode的鏈接器命令,退出代碼爲1(使用-v看看調用)
error: linker command failed with exit code 1 (use -v to see invocation)
Ld: library not found for -lPods-Audioplayer
clang: error: linker command failed with exit code 1 (use -v to see invocation)
確保您試圖從.xcworkspace
文件運行,而不是.xcodeproj
文件 - .xcworkspace
文件自動編譯您的所有依賴項,並仍然爲您的應用程序運行正確的方案。
在某些情況下,如果您手動將框架鏈接到項目並在構建時失敗,則可以嘗試在包含庫的Build Phase/Link項目中再次刪除並鏈接它。
當我第一次打開項目和建築時總會遇到類似的情況,但重新連接它使得項目能夠重新構建。
[鏈接器命令失敗並退出代碼1(使用-v查看調用)]的可能重複](http://stackoverflow.com/questions/10435213/linker-command-failed-with-exit-code-1- use-v-to-see-invocation) – JAL
你確定缺少的庫(Pods-Audioplayer)確實存在(在搜索路徑中)嗎? – Matthias
@Matthias這裏是框架的圖片 – iVapp