>我可以从以下代码将曲目添加到播放列表中
[[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 这样的"收藏"或"我的收藏"选项? 我想在我的收藏中添加一些曲目..请帮助我
不幸的是,目前没有。