我已经看到一些应用程序可以让用户从应用程序中评估他们的应用程序。这里有人知道怎么做吗?
谢谢 索伦
答案 0 :(得分:3)
我在博文here中写过这篇文章。该用户将被带到App Store应用程序,我不相信您可以在自己的应用程序中完成所有操作。
这是它的要点
- (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]];
}