How do you prompt the user to rate your iphone app without waiting for them to delete the app?

后端 未结 7 1649
伪装坚强ぢ
伪装坚强ぢ 2020-12-07 11:34

I am referring to the popup window that asks the user to submit a review/rating.

I know it can be done since the Aardark app does it...it asks several times in fact!

7条回答
  •  青春惊慌失措
    2020-12-07 12:02

    I have written about a way to open right into the review panel of the App Store.

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

    The actual code part if called through a button press could look like below

    - (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]];
    }
    

提交回复
热议问题