简体   繁体   English

在iOS中为应用评分

[英]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? e:有什么方法可以将5星自动重定向到应用商店?

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. 您可以向要求他的用户显示弹出窗口:“您喜欢这个应用程序吗?请给它评分”,并且在该弹出窗口上还显示5个空星。 If user tap on 5 - redirect to appstore. 如果用户点击5-重定向到appstore。 If 4 or less - redirect to email controller with problem reporting. 如果小于或等于4,请重定向至包含问题报告的电子邮件控制器。 This method a little bit dirty, but it can significantly improve rate of your app. 这种方法有点脏,但可以显着提高应用程序的速度。

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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