zoukankan      html  css  js  c++  java
  • iOS-应用直接跳转到App Store

    目前是有两种方法实现跳转:一种是直接通过openURL:的方法跳转进入,另一种是通过苹果自身的SKStoreProductViewController 该控制器去实现,

    他们之前的区别是,前者直接跳转到appStore,后者则在应用内打开

    第一种:
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://itunes.apple.com/cn/app/shan-shan-pen-di-fu-nu-jian/appid?mt=8"]];
     
    第二种:需要添加StoreKit.framework系统库  #<StoreKit/StoreKit.h>, 实现SKStoreProductViewControllerDelegate代理
     
    //初始化一个VC
    SKStoreProductViewController *storeProductViewContorller = [[SKStoreProductViewControlleralloc] init];
    storeProductViewContorller.delegate = self;
    //加载一个新的视图展示
    [storeProductViewContorller loadProductWithParameters:@{SKStoreProductParameterITunesItemIdentifier : @"appid"} completionBlock:^(BOOL result, NSError *error) { //block回调
          if(error){
          NSLog(@"error %@ with userInfo %@",error,[error userInfo]);
    }else{
        //弹出appstore
        [self presentViewController:storeProductViewContorller animated:YES completion:nil ];
    } }]
     
    //取消按钮监听
    - (void)productViewControllerDidFinish:(SKStoreProductViewController *)viewController{
        [self dismissViewControllerAnimated:YES completion:nil];
    }
     
  • 相关阅读:
    html5文件api
    折腾一个自己的UrlRewrite
    hdu 4218 ( IMBA? )
    hdu 4217 Data Structure
    九度OJ 1008
    倒酒趣题详解
    第三届蓝桥杯复赛原题
    第三届蓝桥杯复赛题解析
    hdu 4223 Dynamic Programming
    hdu 4224 Enumeration
  • 原文地址:https://www.cnblogs.com/MJP334414/p/7514970.html
Copyright © 2011-2022 走看看