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

iOS开发 点击跳转到App Store 或者 点击按钮去评价

时间:2016-05-20 17:15:47      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:

//跳转到应用页面

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

iOS开发 点击跳转到App Store 或者 点击按钮去评价

标签:

原文地址:http://www.cnblogs.com/IceBlack-Tea-developer/p/5512632.html

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