我在设置表视图中有一个单元格,我想将用户直接发送到Appstore并打开应用页面,以便他们可以留下评论。在Stackoverflow中有很多关于它的内容,但在iOS8和Swift中没有一个对我有用。
感谢。
答案 0 :(得分:5)
if let checkURL = NSURL(string: "http://www.itunes.com/yourAppLlink.html") {
if UIApplication.sharedApplication().openURL(checkURL) {
println("url sucefully opened")
}
} else {
println("invalid url")
}
答案 1 :(得分:0)
试试这个 -
var path: NSURL = NSURL(string: "itms-apps://itunes.apple.com/us/app/YOUR_App_id")!
UIApplication.sharedApplication().openURL(path)