更新中的应用内购买
我正在开发一个应用程序的更新。该应用程序最初是免费的,但我想添加应用内购买。
当然,我想在将应用程序提交到 AppStore 之前测试该应用程序并确保应用内购买运行良好。
我能够测试应用内购买并且效果良好。但是,只有删除以前的版本(我通过 AppStore 安装)才能做到这一点。如果我不删除以前的版本,则不会返回可购买的对象:
- (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response
我倾向于认为这是可以的,但我想确保人们能够在新版本中看到应用内购买。
有什么建议吗?
谢谢!
I'm developing an update to an application. The application was originally free but I want to add in-app purchases.
Of course, I would like to test the application and make sure that the in-app purchase work well before submitting it to the AppStore.
I'm able to test the in-app purchases and they work well. However, I can only do that if I remove the previous version (which I install through the AppStore). If I don't remove the previous version, no purchasable objects are returned in:
- (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response
I would tend to think that it's ok but I want to make sure people will be able to see the in-app purchases in the new version.
Any suggestion?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您向具有inApp功能的应用程序发布更新时,一旦用户选择通过App Store更新您的应用程序,具有inApp功能的新代码、新UI一切都会更新。所以不用担心用户将能够查看您的inApp购买模块。
谢谢
When you release update to your app having inApp functionality,once the user chooses to update your application through App Store,the new code having inApp functionality,New UI everything is updated.So don't worry the user will be able to view your inApp purchase module.
Thanks