2010-11-02 15 views
0

我創建了一個iPhone應用程序。我想將SoundCloud API與我的應用程序集成。我創建了一個獨立的應用程序來集成SoundCloud API。它在SoundCloud API中運行良好。爲什麼我會通過SoundCloud API獲取以下編譯器錯誤?

但我試圖與我現有的應用程序集成,我得到以下錯誤。我已經將SoundCloud API代碼添加到了我現有的應用程序中。

錯誤:

 
ld: warning: directory '/Alex/project/../../iHearFmod/iphoneos3.1.3/System/Library/Frameworks' following -F not found 
Undefined symbols: 
    "_OBJC_CLASS_$_SCSoundCloudAPIConfiguration", referenced from: 
     objc-class-ref-to-SCSoundCloudAPIConfiguration in MyProjectAppDelegate.o 
    "_OBJC_CLASS_$_SCSoundCloudAPI", referenced from: 
     objc-class-ref-to-SCSoundCloudAPI in MyProjectAppDelegate.o 
ld: symbol(s) not found 
collect2: ld returned 1 exit status 

回答

0

上soundclound DOC查找:

The Mac framework should be copied into your application and linked to your target. Also add a build phase to your target that copies the framework to the Frameworks destination.

你做的最後一步?

+0

現在它工作......謝謝。 – jfalexvijay 2010-11-02 09:22:45

相關問題