我已经实现从我的 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
有价值。