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。

posted @ 2014-11-05 15:22  _freedom_yl  阅读(256)  评论(0编辑  收藏  举报