應(yīng)該評(píng)分跳轉(zhuǎn):
https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=8888888888&pageNumber=0&sortOrdering=2&type=Purple+Software&mt=8
應(yīng)用下載跳轉(zhuǎn):
https://itunes.apple.com/cn/app/id8888888888
第二種方式
先導(dǎo)入StoreKit.framework
//初始化控制器
SKStoreProductViewController *storeProductViewContorller = [[SKStoreProductViewController alloc] init];
//設(shè)置代理請(qǐng)求為當(dāng)前控制器本身
storeProductViewContorller.delegate = self;
//加載一個(gè)新的視圖展示
[storeProductViewContorller loadProductWithParameters:
//appId唯一的
@{SKStoreProductParameterITunesItemIdentifier : APP_ID} completionBlock:^(BOOL result, NSError *error) {
//block回調(diào)
if(error){
NSLog(@"error %@ with userInfo %@",error,[error userInfo]);
}else{
//模態(tài)彈出appstore
[self presentViewController:storeProductViewContorller animated:YES completion:^{
}
];
}
}]
//代理事件
#pragma mark-SKStoreProductViewControllerDelegate
- (void)productViewControllerDidFinish:(SKStoreProductViewController *)viewController{
[self dismissViewControllerAnimated:YES completion:^{
}];
}