iOS7でのレビューページへのリンク

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]];

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

次のHTML タグと属性が使えます: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code class="" title="" data-url=""> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> <pre class="" title="" data-url=""> <span class="" title="" data-url="">