码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 从应用程序跳转到评价界面

时间:2015-08-06 18:23:39      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:ios   评价   评价跳转   应用跳转到appstor   

1,跳转到App Store:
NSString *str = [NSString stringWithFormat:@"http://itunes.apple.com/us/app/id%d", 1001065082];
[[UIApplication sharedApplication] openURL:[NSURL urlWithString:str]];

1001065082是App ID

2,跳转到评价页面:
NSString *str = [NSString stringWithFormat:  @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%d",436957167 ];  
[[UIApplication sharedApplication] openURL:[NSURL urlWithString:str]];

3,直接跳转到App Store:
http://phobos.apple.com/。。。。

版权声明:本文为博主原创文章,未经博主允许不得转载。

iOS 从应用程序跳转到评价界面

标签:ios   评价   评价跳转   应用跳转到appstor   

原文地址:http://blog.csdn.net/xia0liang/article/details/47320191

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!