跳转到AppStore更新
/**
* 去AppStore下载
*
* @param appID 应用的appID
*/
- (void)goAppStoreDownload:(NSString *)appID
{
NSString *urlString = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%@?mt=8", appID];
NSURL *url = [NSURL URLWithString:urlString];
if ([[UIApplication sharedApplication] canOpenURL:url])
{
[[UIApplication sharedApplication] openURL:url];
}
else
{
NSLog(@"can not open!");
}
}
去AppStore评分
/**
* 去AppStore评分
*
* @param appID 应用的appID
*/
- (void)goAppStoreScore:(NSString *)appID
{
NSString *urlString = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=%@&pageNumber=0&sortOrdering=2&type=Purple+Software&mt=8",appID];
NSURL *url = [NSURL URLWithString:urlString];
if ([[UIApplication sharedApplication] canOpenURL:url])
{
[[UIApplication sharedApplication] openURL:url];
}
else
{
NSLog(@"can not open!");
}
}
马上测试下试试看
[self goAppStoreDownload:@"1121480676"];