iOS应用内打开App Store应用详情界面

用iPhone浏览UC浏览器的“应用商店”时,发现可以直接在应用内打开App Store中的应用详情和下载页面。

下面来看看怎么实现这个效果吧。

苹果官方文档 "SKStoreProductViewController Class Reference"里有如下介绍:

[plain] view
plain
copy

  1. A SKStoreProductViewController object presents a store that allows the user to purchase other media from the App Store. For example, your app might display the store to allow the user to purchase another app.
  2. To display a store, create a new SKStoreProductViewController object and set its delegate. Then, present the view controller modally from another view controller in your app. Your delegate dismisses the view controller when the user completes the purchase.
  3. To choose a specific product, call the loadProductWithParameters:completionBlock: method, passing the iTunes item identifier for the item you want to sell.

由上可知,通过Modal view方式弹出App Store商品详情页面。我按照文档说明,写了个例子。部分代码如下:

[java] view
plain
copy

  1. - (void)openAppWithIdentifier:(NSString *)appId {
  2. SKStoreProductViewController *storeProductVC = [[SKStoreProductViewController alloc] init];
  3. storeProductVC.delegate = self;
  4. NSDictionary *dict = [NSDictionary dictionaryWithObject:appId forKey:SKStoreProductParameterITunesItemIdentifier];
  5. [storeProductVC loadProductWithParameters:dict completionBlock:^(BOOL result, NSError *error) {
  6. if (result) {
  7. [self presentViewController:storeProductVC animated:YES completion:nil];
  8. }
  9. }];
  10. }

另外,需要实现SKStoreProductViewControllerDelegate如下代理方法:

[java] view
plain
copy

  1. #pragma mark - SKStoreProductViewControllerDelegate
  2. - (void)productViewControllerDidFinish:(SKStoreProductViewController *)viewController {
  3. [viewController dismissViewControllerAnimated:YES completion:^{
  4. [viewController release];
  5. }];
  6. }

可以这样调用:

[java] view
plain
copy

  1. [self openAppWithIdentifier:@"383037733"];

这段代码即实现了上面图示的效果。

注:项目需要添加StoreKit框架,仅在iOS 6.0以上的设备中支持上述实现。

[java] view
plain
copy

  1. Framework
  2. /System/Library/Frameworks/StoreKit.framework
  3. Availability
  4. Available in iOS 6.0 and later.

如果需要兼容6.0以下的设备,可以使用下面的代码(这种方式会跳出当前应用):

[java] view
plain
copy

  1. - (void)outerOpenAppWithIdentifier:(NSString *)appId {
  2. NSString *urlStr = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/us/app/id%@?mt=8", appId];
  3. NSURL *url = [NSURL URLWithString:urlStr];
  4. [[UIApplication sharedApplication] openURL:url];
  5. }

获取应用的链接方法可参考:http://itunes.apple.com/linkmaker

苹果官方文档:http://developer.apple.com/library/ios/#documentation/StoreKit/Reference/SKITunesProductViewController_Ref/Introduction/Introduction.html#//apple_ref/doc/c_ref/SKStoreProductViewController

时间: 2024-10-16 12:38:36

iOS应用内打开App Store应用详情界面的相关文章

微信浏览器内打开App Store链接

将页面的代码写为:<a href="http://mp.weixin.qq.com/mp/redirect?url=http://itunes.apple.com/cn/app/guang-dian-bi-zhi/id942884576">ios下载</a>,在微信浏览器内可以打开app store的地址了.

[转]实现微信浏览器内打开App Store链接

微信浏览器是不支持打开App Store 页面的,不知道微信为什么这么做.比如你页面写 <a href=”http://itunes.apple.com/us/app/id399608199″>download</a> ,在微信浏览器点击链接是没有反应的,但是如果是其他的链接地址,比如百度那就没有问题 后来我发现如果你在微信官方后台编辑图文,把原文链接写为:http://itunes.apple.com/us/app/id399608199 ,那就可以打开了,发现微信页面的“查看原

iOS提交应用至App Store流程及真机调试 一,证书、配置文件

前言:你要有苹果开发者账号,我用的是个人账号.其次xcode为xcode 7,由于xcode 7需要 os x 系统 10.11 或更高的版本, 所以os x 系统也需要 10.11 或更高的版本.(本文说的提交是源代码用xCode提交,不是ipa 提交,ipa提交我还没有试过,暂不阐述)关于xCode中真机调试与提交的操作,在下一篇"iOS提交应用至App Store流程及真机调试 二,xCode操作"篇幅原因,这一篇只做,证书与配置文件的说明.篇幅加上图有点长,内容其实不多,多数为

微信中打开app store连接

微信浏览器是不支持打开App Store 页面的.比如你页面写 <a href="http://itunes.apple.com/us/app/id867985717″>下载取号啦</a> ,在微信浏览器点击链接是没有反应的,但是如果是其他的链接地址,比如百度那就没有问题. function viewSource() { var redirectUrl = sourceurl.indexOf('://') < 0 ? 'http://' + sourceurl :

微信浏览器不支持打开App Store 页面的解决

微信浏览器是不支持打开App Store 页面的,不知道微信为什么这么做.比如你页面写 <a href=”"https://itunes.apple.com/cn/app/di-yip2p/id853552412?mt=8"″>download</a> ,在微信浏览器点击链接是没有反应的,但是如果是其他的链接地址,比如百度那就没有问题 那么如何解决这个问题呢? 哪就是走微信的接口,步骤如下: 1.将原来的url进行encodeURIComponent 2.生成新

iOS开发上传App Store时候一直卡在 Authenticating with the iTunes Store 的解决办法 2017-05-04 10:33

参考:http://blog.csdn.net/whjay520/article/details/71158757?utm_source=itdadao&utm_medium=referral iOS开发上传App Store时候一直卡在 Authenticating with the iTunes Store 的解决办法 2017-05-04 10:33 359人阅读 评论(2) 收藏 举报 分类: swift(29) iOS相关(46) 版权声明:本文为博主原创文章,未经博主允许不得转载.

iOS 在应用内展示App Store 【StoreKit,SKStoreProductViewController】

出于什么样的原因你会希望用户从你的iOS app中进入App Store呢?可能你想用户去App Store 为你的应用评分,也可能你希望用户看到你其他的iOS app.iOS 6引入了SKStoreProductViewController类,可以让用户在不离开当前应用的前提下展示App Store中的其他产品. Store Kit SKStoreProductViewController类是Store Kit框架的一部分.SKStoreProductViewController使用起来非常简

iOS 6 SDK: 在应用内展示App Store 【StoreKit,SKStoreProductViewController】

原文  http://www.gowhich.com/blog/view/id/382 出于什么样的原因你会希望用户从你的iOS app中进入App Store呢?可能你想用户去App Store 为你的应用评分,也可能你希望用户看到你其他的iOS app.iOS 6引入了SKStoreProductViewController类,可以让用户在不离开当前应用的前提下展示App Store中的其他产品. Store Kit SKStoreProductViewController类是Store K

发布iOS应用(xcode5)到App Store(苹果商店) 详细解析

第一步 -- 到 itunes connect网站提交申请应用说明 在苹果的世界里,每一个应用都有一个不同的名字,为了给自己的应用率先在该平台上获得一个未来的位置,保证你的应用的名字在开发项目后还能用,开发者可以在app store抢先注册了听起来不错的名称.但不能抢占后一直不上传应用,这样做会受到道德谴责,而且苹果可能以后会开始整顿. 进入99美元的itunes connect 账号之后,选择 Manage Your Apps 点击进去后,点价 添加新的应用 Add new app 选择之后,