Skip to content

Instantly share code, notes, and snippets.

@artemnovichkov
Created October 31, 2017 02:33
Show Gist options
  • Save artemnovichkov/b479c347cca16a6422199e67a0c31fce to your computer and use it in GitHub Desktop.
Save artemnovichkov/b479c347cca16a6422199e67a0c31fce to your computer and use it in GitHub Desktop.
Open App Store for review
func openAppStore() {
let appID = 1227356223
let appURLString: String
if #available(iOS 11.0, *) {
appURLString = "itms-apps://itunes.apple.com/us/app/itunes-u/id\(appID)?action=write-review"
}
else {
appURLString = "itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=\(appID)"
}
UIApplication.shared.openURL(URL(string: appURLString)!)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment