0

i can add tracks into playlist from the following code

[[SPSession sharedSession] playlistForURL:playList.spotifyURL callback:^(SPPlaylist *playlist) {
        [SPAsyncLoading waitUntilLoaded:playlist timeout:kSPAsyncLoadingDefaultTimeout then:^(NSArray *loadedItems, NSArray *notLoadedItems) {
            [playlist addItem:self.currentTrack atIndex:0 callback:^(NSError *error) {
                NSLog(@"error %@",error);
                [hud hide:YES];
            }];
        }];
    }];

here i want to know that is there any option for "collection" or "my collections" like Rdio ? i want add some tracks into my collections ..Please help me

Mani murugan
  • 1,792
  • 2
  • 17
  • 32

1 Answers1

1

Unfortunately not at this time, no.

iKenndac
  • 18,730
  • 3
  • 35
  • 51