从apple music链接

时间:2017-04-22 21:06:39

标签: objective-c apple-music

Apple建议我们使用联盟链接搜索苹果音乐中的项目。但是,是否可以从链接获取有关该歌曲的信息。例如,此链接:https://itun.es/ua/qzPyfb?i=1164089149。我需要从此链接获取信息,我可以用它来搜索歌曲,例如,在MPMediaLibrary中。

1 个答案:

答案 0 :(得分:1)

所以,我找到了答案。最后的数字是产品ID。采用该链接https://itun.es/ua/qzPyfb?i=1164089149。想象一下,我们已经从字符串的最后数字中得到了。

 MPMediaLibrary *library = [MPMediaLibrary defaultMediaLibrary];
    [library addItemWithProductID:trackId completionHandler:^(NSArray<__kindof MPMediaEntity *> * _Nonnull entities, NSError * _Nullable error) {
        if (error) { 
            NSLog(@"%@", error);
        } else {
            if ([entities count]) {
                for (MPMediaItem *item in entities) {
                    NSLog(@"%@", item.title);
                }
            } else {
                    NSLog(@"There is no track with this product Id. Bad link.");
            }
        }
    }];