2014-01-24 41 views
2

应用程序开发已完成。它尚未在iTunes上提交,但我有一个流程来显示应用程序的iTunes审阅屏幕。iOS上的iTunes应用程序审查应用程序

我们如何将应用程序中的iTunes评论重定向?

我曾尝试使用下面的代码进行测试......

NSString *str = @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=337064413"; 

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]]; 

难道我们只需要更改应用程序ID为我的应用程序?

回答

1

对于iOS 7使用此链接:

itms-apps://itunes.apple.com/app/id337064413 

更改337064413到您的应用程序的ID

的代码看起来就像这样:

NSString *str = @"itms-apps://itunes.apple.com/app/id337064413";  
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]]; 

但是,这种方法不会给你带来到Review页面,您会看到App Description页面。无法直接将用户发送到评论页面。

+0

顺便说一句:小心[你复制](http://meta.stackexchange.com/questions/220158/this-user-is-edit-spamming-dozens-of-answers-with-their-affiliate -code-can-they)... ;-) – Arjan

相关问题