到目前为止(iOS< 6.0),我使用以下URL和代码将用户直接发送到我的应用程序的评论页面(用5颗星评分并发表友好的评论:)):
NSString *stringUrl = @"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=XXXXXXXX&pageNumber=0&sortOrdering=1&type=Purple+Software&mt=8"; NSURL *url = [NSURL URLWithString:stringUrl]; [[UIApplication sharedApplication] openURL:url];
当我在iOS 6(和iOS 6的新应用商店)的设备上运行我的应用程序时,此代码不再工作.该appstore打开,但是我有一个警告说“无法连接到Appstore”.
有人知道如何将用户直接发送到iOS 6 Appstore的评论页面? (请注意,我知道如何发送用户对我的应用程序的描述,这不是我想要的!)
谢谢 !