I have followed the instructions to include the sound cloud api into my app at the following link exactly:
https://github.com/soundcloud/CocoaSoundCloudAPI
But when I get to the part where I need to – #import “SCUI.h”
I get an error SCUI.h file not found.
I have tried everything I can think of to fix the issue.
I am using Xcode 4.3.3 with iOS SDK 5.1
If anyone could help me out I would really appreciate it.
Thanks
Ben
I’m answering the question you posed in your comment. I haven’t used this particular library, but it seems from looking at the source that you’re trying to use a function that the library’s author marked as private. If you really need your code to be able to use
[SCSoundCloud shared], you could include the headerSCSoundCloud+Private.h, and that should fix your problem… but you should be able to access all the functionality you need by calling[SCRequest perform...withAccount:[SCSoundCloud account]...].