2016-10-02 91 views
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]; 
+0

請檢查我的答案。它可以幫助你。 –

回答

1

配置的用戶在桌面上使用或通過-the-創建iTunes播放列表在設備上播放列表。對於您的iOS應用程序,(MPMediaPlaylist)播放列表爲只讀。所以目前無法通過第三方應用創建這些內容。用戶只能通過iTunes或通過內置的iOS音樂應用程序進行此操作。

Apple Ref Link

希望這會幫助你。

+0

@ DZoki019對你有幫助嗎? –

相關問題