Search code examples
iphonexcode4soundcloudios-frameworks

Link binaries with Library in Xcode 4 for Soundcloud wrapper


When I attempt step 3 in the XCode part of the setup section of these instructions I can see Soundcloud.API framework as an option to add, but not libSoundCloud.a or libOAuth2Client.a. Any ideas? I'm using Xcode 4 and the iPhoneTestApp as my base project. I then added the Soundcloud project to it.


Solution

  • As soon as you added the Project and did all steps mentioned in the guide, you got to Project, then select the target, go to Build Phases and select "Link Binary with ...". The screen should look like the one below. If you select the .a file it will be linked statically, if you select the framework it will be linked dynamically.

    The project is a plain iPhone project with no more code added.

    Screen