iOS7では、iOS6までの方法では、AppStoreのレビューページに飛ばなくなっている。面倒だが、iOS6向けとiOS7向けでURLを切り替えるしかなさそうだ。
参考:iOS7でアプリからappstoreのレビューページにリンクする
#define APP_ID @"XXXXXXXXX"
NSString* url = ([[UIDevice currentDevice].systemVersion floatValue] >= 7.0)?
// iOS7以降
[NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%@",APP_ID]:
// iOS6以前
[NSString stringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=%@&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&type=Purple+Software",APP_ID];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
NSString* url = ([[UIDevice currentDevice].systemVersion floatValue] >= 7.0)?
// iOS7以降
[NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%@",APP_ID]:
// iOS6以前
[NSString stringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=%@&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&type=Purple+Software",APP_ID];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];