在 1.0 版本中,应用内容是免费的。而在 1.1 版本中,我为一些内容实现了自动续订订阅,并使用IAPHelper来实现 InApp 购买。在全新安装的情况下,订阅运行良好,而更新版本的用户可以免费访问付费内容。如果有人知道,这可能是什么原因,请帮助我。
这是我的购买代码
[[SubIAPHelper sharedInstance] requestProductsWithCompletionHandler:^(BOOL success, NSArray *products) {
if (success) {
inAppproducts=products;
SKProduct *product =products[0];
if (![[SubIAPHelper sharedInstance] productPurchased:product.productIdentifier]) {
/* purchasing UI shown here and after successful purchase content is downloaded */
}
else
{
/*Content downloaded as previously purchased and rest of the flow*/
}
}
}];
任何形式的帮助都将是可观的。