在App中跳转到AppStore下载应用

来源:互联网 发布:彩票预测算法 编辑:程序博客网 时间:2024/05/17 08:09

怎么在App中跳转到AppStore中有2中方法:


1.  应用内跳转

需要导入头文件:<StoreKit/StoreKit.h>, StoreKit是跟appStore有关的框架;

遵守协议     SKStoreProductViewControllerDelegate

@interfaceViewController () <SKStoreProductViewControllerDelegate>

// 创建一个打开打开appStore的方法:
- (void)openAppStore:(NSString *)appId;
@end

//实现协议中的方法
- (void)productViewControllerDidFinish:(SKStoreProductViewController *)viewController {

    [viewController dismissViewControllerAnimated:YEScompletion:nil];
}

- (void)openAppStore:(NSString *)appId
{
    SKStoreProductViewController *storeProductVC = [[SKStoreProductViewControlleralloc] init];
    storeProductVC.delegate =self;
    
    NSDictionary *dic = [NSDictionarydictionaryWithObject:appIdforKey:SKStoreProductParameterITunesItemIdentifier];
    [storeProductVC loadProductWithParameters:diccompletionBlock:^(BOOL result,NSError * _Nullable error) {
        if (result) {
            [selfpresentViewController:storeProductVCanimated:YEScompletion:nil];
        }
    }];
}



2. 跨应用跳转

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event

{

    [[UIApplicationsharedApplication]openURL:[NSURLURLWithString:@"itms://itunes.apple.com/cn/app/Jingxx/id(你的应用id)?mt=8"]];

}




3. 如果是使用 app内嵌套的h5跳转,

function () {

        document.getElementById("update").onclick =function(){

            window.location.href = "itms-apps://itunes.apple.com/cn/app/Jingxx/idxxxxx?mt=8";

        }






0 0