简体   繁体   中英

Rate the App in iOS

I integrated rate app functionality as follow:

-(void)doRateApp {
    NSString *link = [@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=" stringByAppendingString:@"xxxxxxx"];

    [[UIApplication sharedApplication] openURL: [NSURL URLWithString:link]]; 
}

Que: Is there any way to redirect with 5 star automatically to app store?

Thanks in advance

Don't try to cheat apple it caught problem on your app.

star with title and comments through rate the app. so for don't waste your time for that. Just ask to user like app rate now or rate later or don't want etc.,

Note:

Don't try any third party framework or trying to access any other approach it may be rejected from apple. don't take risk

You can trick as it does many successful apps. You can show popup to user which asked him: "Do you like this app? Rate it please" and also show on this popup 5 empty stars. If user tap on 5 - redirect to appstore. If 4 or less - redirect to email controller with problem reporting. This method a little bit dirty, but it can significantly improve rate of your app.

不能。您必须允许用户选择“评级”,即使您发现某些骇客行为不会超出“ Appstore评论”范围,他们也会予以拒绝。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM