app跳转到AppStore评分

来源:互联网 发布:淘宝高仿假币联系方式 编辑:程序博客网 时间:2024/05/02 05:07

自己做APP的时候,用到评分,其实实现很简单,亲测可以跳转到APP评论界面
代码如下:

 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=%@&pageNumber=0&sortOrdering=2&type=Purple+Software&mt=8",appID]]];
0 0