您的位置:首页 > 移动开发

iOS开发--跳转进入AppStore评论页面

2014-09-19 11:41 281 查看
如下:

NSString *appID = @"AppID;
NSString *url = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%@", appID];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
进入App页面:

NSString *appID = @"AppID";
NSString *url = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%@", appID];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  ios AppStore App评论