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];