gpt4 book ai didi

ios - 没有什么可恢复时显示警报

转载 作者:行者123 更新时间:2023-11-29 10:30:53 27 4
gpt4 key购买 nike

我在我的应用程序中实现了应用程序内购买以及恢复。我的问题是:如果我按下恢复按钮并且没有任何东西可以恢复,我怎么知道呢?

现在,如果我点击恢复按钮并且用户以前购买过东西,它会恢复并显示一条消息。但如果没有任何东西可以恢复,它就什么也做不了,我想告诉用户一些事情。

谢谢

更新:

我通过检查交易数量来修复它,如果它 = 0 则没有任何东西可以恢复:

- (void)paymentQueueRestoreCompletedTransactionsFinished:(SKPaymentQueue *)queue {
NSMutableArray *purchasedItemIDs = [[NSMutableArray alloc] init];

if (queue.transactions.count == 0) {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Sorry" message:@"You don't have anything to restore" delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];

[alert show];

}


for (SKPaymentTransaction *transaction in queue.transactions) {



NSString *productID = transaction.payment.productIdentifier;
[purchasedItemIDs addObject:productID];
[_transactionDelegate inAppPurchaseHelper:self transaction:productID didFinish:YES];

}
}

最佳答案

paymentQueueRestoreCompletedTransactionsFinished 方法在恢复完成时被调用。同时,跟踪您收到了多少(如果有)类型为 SKPaymentTransactionStateRestored 的交易。

如果它为零,那么您就知道没有任何恢复。

关于ios - 没有什么可恢复时显示警报,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29685246/

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