So, in my Swift app, I'm doing SoundCloud auth with this sdk. I have my redirect URI set up as appname in the info.plist, and the SoundCloud redirect URI set as appname://authorized on the SC website. However, my function in the app delegate isn't getting called after logging in. Is there anything I'm missing?
func application(application: UIApplication, openURL url: NSURL, sourceApplication: String?, annotation: AnyObject) -> Bool {
print("function called")
return true
}
Is this the correct function I'm supposed to implement?