美文网首页
iOS关于内购那些事

iOS关于内购那些事

作者: 雪上踏痕 | 来源:发表于2017-02-22 17:17 被阅读569次

在开发中我们会遇到应用内购买的场景,特别是一些虚拟物品的购买,就要用到内购.

一 什么时候需要用到内购?

大家都知道App Store中有很多付费应用,那么如果想通过iOS app来赚钱有哪些途径呢?

1.app直接下载收费,这类主要是一些游戏/工具类应用.

2.在app中植入广告 iAd Framework

3.提供内购:应用程序本身虚拟产品等(内购是需要和苹果进行利润分成的,一般是苹果3,开发商7)

内购注意事项

1.购买的商品在本app中使用(例如游戏币,打赏的道具,app虚拟货币等),需要使用内购.否则苹果会拒绝你上线.

2.内购需要向苹果申请,并且还会与苹果有利润分成.

3.如果只是购买实体商品比如商城的产品,可以直接调用微信支付宝等三方支付,此并不在内购范围之内.

二 内购产品类型

内购类型归纳

1.非消耗品(Nonconsumable)一旦购买,终身拥有

2.消费品(Consumable),买了就用,用了就没有了

3.免费订阅

4.自动续费订阅

5.非自动续费订阅

以下是苹果官方解释

Consumables

Consumables are In-App Purchases that must be purchased each time the user needs that item. Consumable In-App Purchases are available for both iOS and OS X apps.

• Supplies in a game (ammunition, health points, cheats, extra lives, etc)

• Accelerators used to decrease advancement time within an app

消耗品:用户每次使用时都需要购买;

• 游戏中的补给品,比如生命值等等;

• 缩短晋级时间的加速器。

Non-Consumables

Non-Consumables are In-App Purchases that only need to be purchased once by the user and are available to all devices registered to a user. This purchase type is used for services that do not expire. Non-Consumable In-App Purchases are available for both iOS and OS X apps.

• Additional levels within a game

• Access to pro-features such as additional camera lenses or audio effects

• Lifetime subscription to a service

• Books and individual magazine issues

非消耗品:用户只需要购买一次,在任何设备上登录该账户,都可以使用该商品。

• 游戏中额外的关卡;

• 付费功能,比如相机应用中的付费滤镜等。

Auto-Renewable Subscriptions

Auto-Renewable Subscriptions allow the user to purchase episodic content or access to dynamic digital content for a set duration time. At the end of each duration, the subscription will renew itself, until a user opts out. The Auto-Renewable Subscription In-App Purchase type is available for both iOS and OS X apps.

• Recurring delivery of newspapers or magazine issues

• Monthly subscription to audio or video streaming feed

• Weekly membership to a dating service

• Business app providing cloud storage services

自动订阅:用户在特定时间段内可以获取到指定的内容。并且,在指定时间段即将结束时,自动订阅。

• 报纸杂志订阅等。

Free Subscriptions

Free Subscriptions are an extension of Auto-Renewable Subscriptions that permit the delivery of free subscription content to Newsstand-enabled applications. The Free Subscription In-App Purchase type is implemented in the same way as an Auto-Renewable Subscription, just without any charges to the user. Free Subscriptions do not have expirations, but the user can turn off the subscription at any time.

免费自动订阅:是“自动订阅”类型的扩展,比起“自动订阅”,差别在于免费。该类型是不会过期的,除非用户手动关掉。

Non-Renewing Subscriptions

Non-Renewing Subscription allow the sale of services with a limited duration. Non-Renewing Subscriptions must be used for In-App Purchases that offer time-based access to static content and are only available for both iOS and OS X apps.

• One week subscription to voice guidance feature within a navigation app

• Annual subscription to online catalog of archived video or audio

非自动续订:需要用户手动再次购买的,基于时间的商品类型。

• 导航类app中,语音导航功能一周的使用权利等。

内购流程

内购流程简书上已经有很多文章介绍了,写的也不错,如果工作中遇到可以参考:

http://www.jianshu.com/p/86ac7d3b593a

http://www.jianshu.com/p/d9d742e82188

相关文章

  • iOS关于内购那些事

    在开发中我们会遇到应用内购买的场景,特别是一些虚拟物品的购买,就要用到内购. 一 什么时候需要用到内购? 大家都知...

  • 关于内购那些事

    网上关于如何集成内购的文章有很多,我用的是IAPHelper这个框架,用起来非常的简单,集成的问题就不说了,怎么创...

  • iOS-内购

    前言:关于iOS内购,参考两篇博文 iOS-iOS内购流程(手把手图文教程)iOS内购你看我就够了(埋坑篇) 我自...

  • 说说IOS内购那些事

    1.支付类和协议 Store Kit框架下提供用来处理应用内购大致的类可以分为两部分:1.请求商品,2.购买商品。...

  • 内购

    关于内购的那些坑

  • IOS内购(IAP)的那些事

    最近有个项目客户总是反应掉单,于是乎就看了看内购相关的东西,发现坑还真是不少,这里做个总结。 IAP,即in-Ap...

  • iOS 苹果内购流程

    本文参考: iOS开发之内购完全笔记 iOS开发内购全套图文教程 iOS应用程序内购/内付费(一) 代码...

  • iOS内购流程文档-Lion

    iOS内购流程: iOS内购 什么时候用到呢? 虚拟产品就需要用到iOS内购;购买的商品,是在本app中...

  • TT--TTOtherPayManager(iOS微信和支付宝支

    前言 针对iOS的支付,在之前,TTFrameWork仅仅写了关于苹果的内购AppPurchaseManager,...

  • 苹果内购那些事

    在内购项目中的那些奇葩事 一、 首先就是在自己的开发者账号中设置的一些乱七八糟的东西,在我们公司这些东西都是运营的...

网友评论

      本文标题:iOS关于内购那些事

      本文链接:https://www.haomeiwen.com/subject/hasmwttx.html