Wednesday, 7 August 2013

How can i create custom login view controller to spotify through cocoalibspotify

How can i create custom login view controller to spotify through
cocoalibspotify

i wanted to know how can i create custom login view (i want diffrent
design instead of the one inside the cocoalibspotify) [[SPSession
sharedSession] attemptLoginWithUserName:userName password:password] but
how can i know if the user is logged in successfully or not? since i
didn't saw any delegates.

1 comment:

  1. You need to assign a session delegate to your view controller:

    [[SPSession sharedSession] setDelegate:self];

    ReplyDelete