是否可以通过我的tvOS应用程序从iTunes购买歌曲

时间:2016-08-01 09:46:13

标签: swift itunes tvos itunes-api

我已经实现了从我的tvOS应用程序播放iTunes歌曲。我想从我的应用程序中为purchase songs提供该功能,我有以下代码 -

var iTunesLink = "https://itunes.apple.com/us/album/crazy-naked-girls/id310568758?i=310568759&uo=4&at=xxxxxxWa&app=itunes";

if let appStoreURL = NSURL(string: iTunesLink as String) {
    if (UIApplication.sharedApplication().canOpenURL(appStoreURL) == true) {
        UIApplication.sharedApplication().openURL(appStoreURL)
    }
}

但此行UIApplication.sharedApplication().canOpenURL(appStoreURL)始终提供false值。

0 个答案:

没有答案