iTunes音乐调研

2021-03-22  本文已影响0人  疯疯的小龙

相关App

音乐

iTunes Store

音乐和iTunes Store的关联

*【音乐】里订阅后只能播放音乐,要在其他app中使用音乐需要在【iTunes Store】购买,【iTunes Store】购买后的音乐会添加到【音乐】的资料库里

代码相关

 guard let url = URL(string: "music://"), UIApplication.shared.canOpenURL(url) else { return }
 UIApplication.shared.open(url, options: [:], completionHandler: nil)
 guard let url = URL(string: "itms://"), UIApplication.shared.canOpenURL(url) else { return }
 UIApplication.shared.open(url, options: [:], completionHandler: nil)
 guard let url = URL(string: urlStr), UIApplication.shared.canOpenURL(url) else { return }
 UIApplication.shared.open(url, options: [:], completionHandler: nil)
上一篇 下一篇

猜你喜欢

热点阅读