I am following the instructions for the SoundCloud iOS SDK. I have downloaded all the necessary files already and added them to my project's workspace.
However, at one point, this instruction comes up:
Now that we've got our project created and dependencies installed, it's time to write some code. The first thing you'll need to do is set your client credentials. This is done by calling a method on the
SCSoundCloud
class. It's easiest to do this in the initialize class method in your app delegate, so open upSCTAppDelegate.m
and add this near the top, underneath the@implementation SCTAppDelegate
line:
The problem is that I can't find SCTAppDelegate.m
. Is it that I have missed downloading that file somewhere? Or is it because I am currently using Xcode 6/Swift
and that file is not relevant/doesn't exist anymore (in that case would it be somewhere else?).
Does anyone have any suggestions?