Created
October 20, 2016 19:30
-
-
Save erikfloresq/dfa6017b9d8b2e21f2df759d79f8edf7 to your computer and use it in GitHub Desktop.
Envia a la pantalla para hacer review ios 9 >
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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