0
我可以從下面的代碼在Cocoalibspotify(Spotify IOS)中有收集選項嗎?
[[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];
}];
}];
}];
在這裏,我想知道,是有「收藏」或「我的收藏」像RDIO任何選項添加到曲目播放列表?我想添加一些曲目到我的收藏..請幫助我