Eric Brotto
Eric Brotto

Reputation: 54251

How to create SoundCloud api object?

In my iPhone app, I'm trying to allow users to post an audio track to Facebook via Soundcloud. I've been going through this tutorial and have reached this line of code:

 [api performMethod:@"GET" onResource:@"me/connections.json"
     withParameters:nil context:nil userInfo:nil];

My question is going to show how much of a novice I am in this, but: How do I instantiate the api object? Is it a part of a library? What class is it from?

Upvotes: 0

Views: 381

Answers (1)

Simon Lee
Simon Lee

Reputation: 22334

If you open the test projects it shows you in the app delegate how to create the API object.

Upvotes: 1

Related Questions