在 iPhone 中的应用程序中评价我在 iTunes 中的应用程序
我必须在我的应用程序中提供一个链接,用户点击它就会将我带到应用程序的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是我的方法;这会直接进入 App Store 和我的应用程序的“评论/评分”页面:
只需将末尾的 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:
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.
您还可以使用,
请参阅下面的链接,它会将您重定向到应用程序商店应用程序详细信息页面。
不需要 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 :-)