应用程序内购买不起作用
我使用本教程 http://www.raywenderlich.com/2797/introduction -to-in-app-purchases 用于在我的应用程序中创建购买。
该代码有时会工作或不工作。我知道这听起来很有趣,但这是我的问题。
例如:第一次启动应用程序(所有项目下载并显示在表中,我可以购买其中的任何项目),但在下次(例如第二次启动)我在这一行收到错误:
SKProduct *product = [[InAppRageIAPHelper sharedHelper].products objectAtIndex:0];
错误是
由于未捕获的异常“NSRangeException”索引 0 超出空数组范围而终止应用程序
I use this tutorial http://www.raywenderlich.com/2797/introduction-to-in-app-purchases for create purchases in my app.
From time to time this code is working or not working. I know it sounds funny, but this is my problem.
For example: First start app (all items download and shows in table and i have available to purchase any of this), but at the next time (for example second start) I get an error on this line:
SKProduct *product = [[InAppRageIAPHelper sharedHelper].products objectAtIndex:0];
The error is
Terminating app due to uncaught exception 'NSRangeException' index 0 beyond bounds for empty array
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想避免这种崩溃,只需在处理产品之前设置一个条件,如下所示:
If you want to avoid this kind of crash just put a condition before processing the product like this:
当您使用付款方式时使用此代码...就像按下付款按钮一样
您发现,当您第一次启动应用程序时,您有产品阀门...而当您第二次使用应用程序时,产品具有 NULL 值... .所以你的应用程序崩溃了...检查..
use this Code when you use the payment method.....like payment button pressed
You found , when You start App First time then You have products valve...and when You use app Second time then Products have NULL Value....So Your Application is Crash ...check ..
我在对我的设备进行硬重置后解决了这个问题。
This problem I solved after make hard reset for my device.