Created
          February 13, 2010 20:27 
        
      - 
      
- 
        Save coreyfloyd/303659 to your computer and use it in GitHub Desktop. 
  
    
      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
    
  
  
    
  | - (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