在 iPhone 中的应用程序中评价我在 iTunes 中的应用程序

发布于 2024-10-15 02:02:43 字数 146 浏览 0 评论 0原文

我必须在我的应用程序中提供一个链接,用户点击它就会将我带到应用程序的 itunes Appstore 页面,用户可以在其中对应用程序进行评分。我认为其他应用程序尝试访问设备中的Appstore应用程序并在itunes中传递应用程序的相应url...如何做到这一点?任何想法...

I have to provide a link in my app where the user touches on it it will take me to the itunes Appstore page of my application where the user can rate the Application. I think other apps try to access the Appstore Application in the device and pass the corresponding url of the application in itunes... How to do this? Any ideas...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

儭儭莪哋寶赑 2024-10-22 02:02:43

这是我的方法;这会直接进入 App Store 和我的应用程序的“评论/评分”页面:

- (IBAction)rateGame {
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=409954448"]];
}

只需将末尾的 id (409954448) 更改为您的应用程序的 id。另外,如果您跟踪启动次数或其他内容,则可以在启动 12 次后触发此方法以提高评级。我在更新中添加了此内容,大约 2 周后它就产生了 5 个评分。非常有用。

Here's my method; this goes straight to the App Store and to the Review/Rate page for my app:

- (IBAction)rateGame {
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=409954448"]];
}

Just change the id at the end (409954448) to the id for your app. Also, if you track the launch count or something, you can trigger this method after, say 12 launches to increase ratings. I added this in my update and in about 2 weeks it generated 5 ratings. Very useful.

空袭的梦i 2024-10-22 02:02:43
NSURL* urlToMyApp = @"http://url.to.my/app/in/the/app/store";
[[UIApplication sharedApplication] openURL:urlToMyApp];
NSURL* urlToMyApp = @"http://url.to.my/app/in/the/app/store";
[[UIApplication sharedApplication] openURL:urlToMyApp];
余罪 2024-10-22 02:02:43

您还可以使用,

请参阅下面的链接,它会将您重定向到应用程序商店应用程序详细信息页面。
不需要 StoreKit.framework。

http: //www.brianjcoleman.com/tutorial-how-to-add-write-a-review-rate-us-feature-to-your-app/

注意:

  • 如果 iOS >= 7 使用, [[UIApplication sharedApplication]openURL:[NSURL URLWithString:[NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/idYOUR_APP_ID"]]];

  • 这在模拟器上不起作用,所以不要在模拟器上测试:-)

You can also use,

See link below, It will redirect you on app store app details page.
StoreKit.framework not needed.

http://www.brianjcoleman.com/tutorial-how-to-add-write-a-review-rate-us-feature-to-your-app/

Notes :

  • If iOS >= 7 use, [[UIApplication sharedApplication]openURL:[NSURL URLWithString:[NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/idYOUR_APP_ID"]]];

  • This will not work on simulator so don't test on Simulator :-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文