apple评论页面地址和升级提示
最近发现之前构造的iOS评论页面不好用了,今天收集了下,现在备忘于此:
NSString *appstoreReview = nil;
if (SYSTEM_VERSION_IS_OVER_IOS7){
appstoreReview = @"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=[appid]";
}else {
appstoreReview = @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=[appid]";
}
注意:在iOS7.0以上的系统和7.0以下的系统还是有些细微的差别
特别注意,在内购页面的评论是不支持评论的,所以还是建议跳转到Safari
Your app includes an update button or alerts the user to update the app. To avoid user confusion, app version updates must utilize the iOS built-in update mechanism.