0
是否有機會搜索iTunes中的歌曲並將它們以編程方式添加到本地播放列表中?使用iTunes中的歌曲製作本地播放列表
BTW:我創建的本地播放列表成功,得到了JSON,但我不知道如何使用它:
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:@"https://itunes.apple.com/search?term=Gipsy+Kings+Bamboleo&country=US&media=music&entity=song"]];
[[[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler: ^(NSData *data, NSURLResponse *response, NSError *error){
NSError *jsonError;
NSDictionary *jsonResult = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&jsonError];
}] resume];
請檢查我的答案。它可以幫助你。 –