程序内页面下载App_SKStoreProductViewController

一,概述

    从iOS6以后苹果提供了在应用内部打开App Store中某一个应用下载页面的方式,提供了一个SKStoreProductViewController的类对该功能进行支持。

二,使用方法
首先,需要导入#import <StoreKit/StoreKit.h>。
其次,需要遵守<SKStoreProductViewControllerDelegate>这个协议。
第三,相关代码

/**

 *  跳转方法

 */

- (void)presentAppStoreForID:(NSNumber *)appStoreID inView:(UIView *)view withDelegate:(id<SKStoreProductViewControllerDelegate>)delegate withURL:(NSURL *)appStoreURL{
    if(NSClassFromString(@"SKStoreProductViewController")) { 
     //通过NSClassFromString方法确定系统版本是否是ios6+   
        SKStoreProductViewController *storeController = [[SKStoreProductViewController alloc] init];
        storeController.delegate = delegate; // productViewControllerDidFinish
         
        // [NSNumber numberWithInt:322852954];
         
        NSDictionary *productParameters = @{ SKStoreProductParameterITunesItemIdentifier : appStoreID};
        [storeController loadProductWithParameters:productParameters completionBlock:^(BOOL result, NSError *error) {
            if (result) {
                [self presentModalViewController:storeController animated:YES];
            } else {
                [[[UIAlertView alloc] initWithTitle:@"Uh oh!" message:@"There was a problem displaying the game" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles: nil] show];
            }
        }];
    } else { 
     // 系统版本是ios6 以前版本
        [[UIApplication sharedApplication] openURL:appStoreURL];
    }
}

/**

 *  SKStoreProductViewController 的代理方法

 */

- (void)productViewControllerDidFinish:(SKStoreProductViewController *)viewController {
         [viewController dismissModalViewControllerAnimated:YES];
}



  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值