やり方
Safariに飛ばす要領でUIApplicationクラスのopenURL:メソッドを使用します。その際指定するURLは以下のものになります。
itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=アプリのID&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&type=Purple+Software
以下例です。
NSString * appId = @"xxx";
NSString *url = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=%@&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&type=Purple+Software", appId];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
0 件のコメント:
コメントを投稿