#import <StoreKit/StoreKit.h>
@interface PlayVC ()<SKStoreProductViewControllerDelegate>
@end
SKStoreProductViewController *appStore = [[SKStoreProductViewController alloc] init];
appStore.delegate = self;
// 先去跳转再去加载页面,体验感方面会好很多
[appStore loadProductWithParameters:@{SKStoreProductParameterITunesItemIdentifier : @"AppId"} completionBlock:^(BOOL result, NSError * _Nullable error) {
if (error) {
NSLog(@"错误 %@",error);
} else {
}
}];
[self presentViewController:appStore animated:YES completion:nil];
这个是直接跳转到AppStore中指定应用
NSURL *url = [NSURL URLWithString:DownloadUrl];
[[UIApplication sharedApplication] openURL:url];
网友评论