imzyf / ios-swift-learning-notes

📝 iOS Swift Learning Notes - see Issues
MIT License
0 stars 0 forks source link

AppStore 跳转评论 #64

Open imzyf opened 6 years ago

imzyf commented 6 years ago

URL

itms-apps://itunes.apple.com/app/id123456

https://itunes.apple.com/app/id123456

评论页面

itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&id=123456

// 以下将打开 iTunes Store 不是 App Store
https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&id=123456
imzyf commented 6 years ago
let url = "itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&id=\(APPSTORE_ID)"

UIApplication.shared.openURL(URL(string: url)!)
imzyf commented 6 years ago

itms:// 开头的应用详情页连接,跳转到 iTunes Store