jon*_*wah 7 objective-c storekit ios
我在iOS应用程序中的应用程序购买中使用可再生订阅.当用户尝试购买已经为消息付款的订阅时,将显示iTunes"您当前已订阅此消息".
我如何检测此事件何时发生,以便我可以处理事务并授予对我的应用程序的访问权限.
在paymentQueue:updatedTransactions:它作为SKPaymentTransactionStateFailed传递的观察者的方法.如何区分此类故障和其他故障,例如用户按下取消按钮?
我是否提交了返回的事务,或者我是否需要调用restorePreviousTransactions.
在Apple文档中,它声明"如果用户尝试购买他们已经购买的非消费品或可更新订阅,您的应用程序将收到该项目的常规交易,而不是恢复交易.但是,用户不会再次收费对于该产品,您的应用程序应将这些交易与原始交易的交易完全相同."
Q: How I can detect when this event (currently subscribed) has occurred so that I can process the transaction and grant access to my app.
Run Code Online (Sandbox Code Playgroud)
您通过 Apple 验证来检测订阅何时存在(我使用 php 网站代码来执行此操作),您会收到“状态代码”响应,并且可以验证它是否是代码 21006(订阅已过期)或其他代码(我将 0 和 21006 以外的任何值视为实际错误)。
我的做法是将交易详细信息存储在 PLIST 文件中,该文件存储在文档目录中。
您可以向 PLIST 添加额外的字段,例如到期日期、布尔标志等。
这样您就可以获得收据的副本,尽管您应该始终验证它,因为它可能已过期。
问:在观察者的 paymentQueue:updatedTransactions: 方法中,它以 SKPaymentTransactionStateFailed 的形式通过。如何区分此类故障和其他故障(例如用户按下取消按钮)?
您可以在updatedTransactions 方法中使用switch 语句来确定不同类型的响应。
例子
-(void)paymentQueue:(SKPaymentQueue *)queue restoreCompletedTransactionsFailedWithError:(NSError *)error
{
NSString *message = [NSString stringWithFormat:@"Transaction failed with error - %@", error.localizedDescription];
NSLog(@"Error - %@", message);
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Error"
message:message
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alertView show];
[alertView release];
}
-(void)paymentQueue:(SKPaymentQueue *)queue updatedTransactions:(NSArray *)transactions
{
NSLog(@"updatedTransactions");
for (SKPaymentTransaction *transaction in transactions)
{
switch (transaction.transactionState)
{
case SKPaymentTransactionStatePurchasing:
// take action whilst processing payment
break;
case SKPaymentTransactionStatePurchased:
// take action when feature is purchased
break;
case SKPaymentTransactionStateRestored:
// take action to restore the app as if it was purchased
break;
case SKPaymentTransactionStateFailed:
if (transaction.error.code != SKErrorPaymentCancelled)
{
// Do something with the error
} // end if
break;
default:
break;
} // end switch
} // next
Run Code Online (Sandbox Code Playgroud)
TransactionStateFailed 处理失败,尽管我没有编写取消代码,因为我没有理由在我的应用程序中这样做。
问:我是否提交返回的交易,或者是否需要调用restorePreviousTransactions。
我相信 StoreKit 在内部使用 finishTransaction 方法和 RestorePreviousTransaction 方法处理此问题
IE,
[[SKPaymentQueue defaultQueue] finishTransaction: transaction];
完成交易
我希望这有帮助