Here\'s what I\'m trying to do: I have a button on the settings page in my app - I want this to direct users to the review/rate page on the app store.
I know this is pos
Swift 2 version this code works for iOS 9:
let appId = "12345678" let url = "itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=\(appId)" UIApplication.sharedApplication().openURL(NSURL(string: url)!)