Skip to content

Instantly share code, notes, and snippets.

@erikfloresq
Created October 20, 2016 19:30
Show Gist options
  • Save erikfloresq/dfa6017b9d8b2e21f2df759d79f8edf7 to your computer and use it in GitHub Desktop.
Save erikfloresq/dfa6017b9d8b2e21f2df759d79f8edf7 to your computer and use it in GitHub Desktop.
Envia a la pantalla para hacer review ios 9 >
let appID = "(Your App ID on App Store)"
let urlStr = "itms-apps://itunes.apple.com/app/id\(appID)" // (Option 1) Open App Page
let urlStr = "itms-apps://itunes.apple.com/app/viewContentsUserReviews?id=\(appID)" // (Option 2) Open App Review Tab
UIApplication.sharedApplication().openURL(NSURL(string: urlStr)!)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment