Jump into Review page from an app

Discussion in 'Public Game Developers Forum' started by epatel, Sep 15, 2009.

  1. epatel

    epatel Member

    Apr 17, 2009
    19
    0
    0
    Senior Software Engineer
    Stockholm, Sweden
    #1 epatel, Sep 15, 2009
    Last edited: Sep 18, 2009
    Hi,

    I have written a blog post about getting an iPhone app to jump into the review page from an iPhone app.

    http://www.memention.com/blog/2009/09/03/Open-Reviews.html

    It is basically done like this:

    Code:
    - (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 -- here our Chess game
        str = [NSString stringWithFormat:@"%@289382458", str]; 
    
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
    }
    
    Cheers!
    Edward
     

Share This Page