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

后端 未结 7 1597
伪装坚强ぢ
伪装坚强ぢ 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 11:47

    I wanted to do this when I roll the app out for the first time... looks like I'll have to wait and put it out as an update to ensure that it will work... let me know if I am wrong and there is some way I can test this before submitting to apple for distribution.

    0 讨论(0)
  • 2020-12-07 11:54

    I wrote a library to do this - similar to Appirater but a bit more configurable and with Mac App Store support:

    https://github.com/nicklockwood/iRate

    0 讨论(0)
  • 2020-12-07 11:56

    We AskingPoint have another way to do it (Im a founder) that provides BOTH App Analytics and the rating widget. You can adjust server side settings based on your analytics to prompt only your best users. Change settings on the fly. And it's translated into over 30 languages.

    0 讨论(0)
  • 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]];
    }
    
    0 讨论(0)
  • 2020-12-07 12:08

    this may not be what youre looking for EXACTLY but what i would do is just prompt them in the app somehow and somewhere not too annoying with a button or alert view and have that button link them to app url in safari which opens the appstore to your app. you can use the url http://www.itunes/apps/ (your app) as i believe is the synthax. i cant remember the exact code but i can get it for you if need it.

    0 讨论(0)
  • 2020-12-07 12:11

    I have discovered the most subtle value of S.O. (already obvious to all elementary school teachers) --- often by simply forming your question, your neurons rearrange and you are more successful at answering it yourself! (Either that or Google optimized my search after spying on my keystrokes and indexing my question on S.O.)

    Answer found after more productive googling: http://www.mobileorchard.com/fighting-back-against-the-app-stores-negative-rating-bias/

    0 讨论(0)
提交回复
热议问题