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];
제 대답을 확인하십시오. 그것은 당신을 도울 수 있습니다. –