App Store发表评论/评级iOS 8 Swift

时间:2015-02-25 09:17:30

标签: ios cocoa-touch swift

我在设置表视图中有一个单元格,我想将用户直接发送到Appstore并打开应用页面,以便他们可以留下评论。在Stackoverflow中有很多关于它的内容,但在iOS8和Swift中没有一个对我有用。

感谢。

2 个答案:

答案 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)