iTunes评论网址

Kel*_*vin 2 itunes review app-store ios

一篇老帖子讨论了如何直接将iPhone应用用户发送到应用商店评论页面

但是,链接模板:

https://userpub.itunes.apple.com/WebObjects/MZUserPublishing.woa/wa/addUserReview?id=337064413&type=Purple+Software

已不再适用于iOS 4.3.有没有人知道如何直接将用户链接到iTunes中的评论页面?

los*_*sit 11

试试这个

NSString *str = @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=337064413"; //replace the id param's value with your App's id

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
Run Code Online (Sandbox Code Playgroud)