gpt4 book ai didi

ios - 应用内购买无效

转载 作者:行者123 更新时间:2023-11-28 20:39:36 24 4
gpt4 key购买 nike

我使用这个教程http://www.raywenderlich.com/2797/introduction-to-in-app-purchases用于在我的应用中创建购买。

此代码有时有效或无效。我知道这听起来很有趣,但这是我的问题。

例如:第一次启动应用程序(所有项目都下载并显示在表格中,我可以购买其中的任何一个),但在下一次(例如第二次启动)我在这一行收到错误:

SKProduct *product = [[InAppRageIAPHelper sharedHelper].products objectAtIndex:0]; 

错误是

Terminating app due to uncaught exception 'NSRangeException' index 0 beyond bounds for empty array

最佳答案

如果你想避免这种崩溃,只需在像这样处理产品之前设置一个条件:

if ([[InAppRageIAPHelper sharedHelper].products count] >0)
{
SKProduct *product = [[InAppRageIAPHelper sharedHelper].products objectAtIndex:0];
//product processing goes here
}
else
{
NSLog (@"Warning: no products returned");
}

关于ios - 应用内购买无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9158778/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com