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