iOS--跳转到APPstore评分

本代码适用于iOS7之后的版本:

NSString *str = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%@", APPID];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];

  其中APPID是在iTunes Connect中找到你的app,app对应的Apple ID就是此处的APPID。

原文地址:https://www.cnblogs.com/dreamfree/p/4076489.html