如果需要兼容6.0以下的设备,可以使用下面的代码(这种方式会跳出当前应用)到appstore,那个appid,是你这个应用的appid
- (void)outerOpenAppWithIdentifier:(NSString *)appId {
NSString *urlStr = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/us/app/id%@?mt=8", appId];
NSURL *url = [NSURL URLWithString:urlStr];
[[UIApplication sharedApplication] openURL:url];
}