0

我正在尝试从我的应用程序 Apple Music 应用程序中使用UIApplication.sharedApplication().openURL并搜索艺术家或使用链接打开歌曲所在的相关页面。

有没有我可以用来在 Apple Music App 上搜索的 api?这可能吗?

let test = "https://itun.es/gb/RJEL2?i=915794180"
UIApplication.sharedApplication().openURL(NSURL(string:test)!)

如果我使用该链接,应用程序会打开,但没有任何反应。

4

1 回答 1

0

如果

let test = "https://itun.es/gb/RJEL2?i=915794180"

包含您的搜索信息,您可以像这样获取 url 的内容

let Session = NSURLSession.SharedSession()
var task = Session.dataTaskWithURL(test, completionHandler: {
   (data, response, error) -> Void in

   :
})
task.resume()
于 2016-01-21T01:14:08.980 回答