有没有机会在 iTunes 中搜索歌曲并以编程方式将它们添加到本地播放列表中?
顺便说一句:我成功创建了本地播放列表并获得了 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];