在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*/
}
}
}];
任何形式的帮助都会很明显。