前言
1.应用内跳转到App Store,是iOS项目经常遇到的问题,目前有两种方式去实现跳转,一种是直接通过openURL:的方法跳转进入,另一种是通过苹果自身的SKStoreProductViewController 该控制器去实现,他们之前的区别是,前者直接跳转到appStore,后者则在应用内打开
2.iOS应用经常要实现对xxx有好感?打分鼓励一下吧~ 的功能,目前无法实现直接跳转到去具体的应用去评分,只能跳转到appstore的下载地址,因此无法实现直接评论
1.利用url跳转
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://itunes.apple.com/cn/app/fang-pin-hui-kan-fang-mai/id1031818254?mt=8"]];
//应用内直接跳转到appstore,需要添加StoreKit,framework系统库,需要实现下面的代理方法
SKStoreProductViewController *storeProductViewContorller = [[SKStoreProductViewControlleralloc] init];
//设置代理请求为当前控制器本身
storeProductViewContorller.delegate = self;
//加载一个新的视图展示
[storeProductViewContorller loadProductWithParameters:
//appId唯一的
@{SKStoreProductParameterITunesItemIdentifier : @"1031818254"} completionBlock:^(BOOL result, NSError *error) {
//block回调
if(error){
NSLog(@"error %@ with userInfo %@",error,[error userInfo]);
}else{
//模态弹出appstore
[self presentViewController:storeProductViewContorller animated:YES completion:^{
}
];
}
}]
//取消按钮监听
- (void)productViewControllerDidFinish:(SKStoreProductViewController *)viewController{
[self dismissViewControllerAnimated:YES completion:^{
}];
}
来简书混,点👍💗是必须的!