iPhone / iPad在应用程序评级? [英] iPhone/iPad In app rating?

查看:166
本文介绍了iPhone / iPad在应用程序评级?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经看到一些应用程序可以让用户从应用程序中评估他们的应用程序。这里有人知道怎么做吗?

I have seen that some apps have a option for the user to rate their app from within the app. Anyone here knows how to do that?

谢谢你$ b $bSøren

Thank you Søren

推荐答案

我在博客文章这里写了这篇文章。该用户将被带到App Store应用程序,我不相信您可以在自己的应用程序中完成所有操作。

I wrote about it in a blog post here. The user will be taken to the App Store app and I don't believe you will be able to do all from within you own app.

这是它的要点

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

这篇关于iPhone / iPad在应用程序评级?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆