iPhone:“在 AppStore 中投票”按钮

发布于 2024-09-04 05:41:13 字数 110 浏览 1 评论 0原文

我想添加一个“投票给我们”按钮,该按钮可以打开 App Store 并自动将用户带到我的应用程序评论页面,他们可以在其中为我的应用程序投票。

我该怎么做呢?

I would like to add a button "Vote Us" that opens App Store and brings automatically users to my app review page where they can vote my app.

How can I do it?

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

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

发布评论

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

评论(2

蝶舞 2024-09-11 05:41:13

我认为访问 App Store 上特定页面的最简单方法是使用 URL,这些 URL 是使用 Store 应用程序在 iPhone 上自动打开的。例如,将用户发送至 http://itunes.apple.com /gb/app/polytune/id364009203?mt=8 将它们带到 App Store 中的 PolyTune 页面。我不确定是否有更直接的方法来实现它。

I think the easiest way to access specific pages on the App Store is to use the URLs, which are opened automatically on the iPhone using the Store app. For example, sending the user to http://itunes.apple.com/gb/app/polytune/id364009203?mt=8 takes them to the PolyTune page in the App Store. I'm not sure if there is a more direct way to achieve it.

随心而道 2024-09-11 05:41:13

使用这个:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:
     @"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=YOUR_APP_ID&mt=8"
]];

Use this:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:
     @"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=YOUR_APP_ID&mt=8"
]];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文