1

Apple 向我们推荐了一种通过附属链接搜索 Apple Music 中的项目的方法。但是,是否可以从链接中获取有关歌曲的信息。例如这个链接:https ://itun.es/ua/qzPyfb?i=1164089149 。我需要从此链接获取信息,我可以使用这些信息来搜索歌曲,例如在 MPMediaLibrary 中。

4

1 回答 1

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.");
            }
        }
    }];
于 2017-04-22T21:55:13.410 回答