Skip to content

Instantly share code, notes, and snippets.

@coreyfloyd
Created February 13, 2010 20:27
Show Gist options
  • Save coreyfloyd/303659 to your computer and use it in GitHub Desktop.
Save coreyfloyd/303659 to your computer and use it in GitHub Desktop.
- (IBAction)gotoReviews:(id)sender
{
NSString *str = @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa";
str = [NSString stringWithFormat:@"%@/wa/viewContentsUserReviews?", str];
str = [NSString stringWithFormat:@"%@type=Purple+Software&id=", str];
// Here is the app id from itunesconnect
str = [NSString stringWithFormat:@"%@289382458", str];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment