直接跳转到app store指定应用页面或评论页面

//    跳转到app store指定应用页面:
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://itunes.apple.com/us/app/idYOURAPPID"]];
    
//    跳转到app store指定应用评论页面:
//    据说iOS 6.0及之前的 用这个:
    [[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=YOURAPPID"]];
     
//     iOS 7.0 及以后用这个
     [[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"itms-apps://itunes.apple.com/app/idYOURAPPID"]];
//      但我试过后发现这个只能跳到应用页,没有选中【评论】
      
//      换成这个就可以了(这个和6.0的有细微差别,注意区分):
      [[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=YOURAPPID"]];

你可能感兴趣的:(ios,appstore,评价,评论app)