How to change non-consumable to auto-renewable subscriptions and keep old user?

前端 未结 1 1178
悲哀的现实
悲哀的现实 2021-01-16 23:39

I\'ve had in-app purchase feature with non-consumable pricing in Apple Store. And the app has pricing to use it.

How to change non-consumable to auto-renewable subsc

相关标签:
1条回答
  • 2021-01-17 00:39

    No you can't change it, just make sure in your App, you use
    [[SKPaymentQueue defaultQueue]restoreCompletedTransactions];

    Restore old purchase and check if you find that the user has purchased the non-consumable product (old users), restore the product for free. If user has not purchased that product before (new users), ask them to purchase the new auto-renewable subscriptions.

    0 讨论(0)
提交回复
热议问题