最新跳轉App Store評分的方法

z小志發表於2018-01-22
let urlString = "itms-apps://itunes.apple.com/cn/app/id您的appid?mt=8&action=write-review"
let url = URL(string: urlString)
//根據iOS系統版本,分別處理
if #available(iOS 10, *) {
    UIApplication.shared.open(url!, options: [:],
                              completionHandler: {
                                (success) in
    })
} else {
    UIApplication.shared.openURL(url!)
}

以前的跳轉連結為 itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&id=xxxxxxxx

這種在iOS11 是失效的
複製程式碼

相關文章