使用iTunes中的歌曲制作本地播放列表

时间:2016-10-02 10:02:49

标签: ios objective-c playlist itunes-api iosdeployment

有没有机会在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];

1 个答案:

答案 0 :(得分:1)

用户可以在桌面上使用iTunes配置播放列表,也可以在设备上创建移动播放列表。对于您的iOS应用,(MPMediaPlaylist)播放列表只读。因此目前无法通过第三方应用创建这些应用。用户只能使用iTunes或内置的iOS音乐应用程序执行此操作。

Apple Ref Link

希望这会对你有所帮助。