Post

Replies

Boosts

Views

Activity

In-app Purchase on single transaction
My app is selling 2 in-app products (A and B). Assume a user only purchase product A. Is there a way to restore just product A transaction? It seems to me that there is noway to restore just one transaction. Example: (IBAction)restoreproduct:(id)sender {     if ([SKPaymentQueue canMakePayments]) {         [[SKPaymentQueue defaultQueue] addTransactionObserver:self];         [[SKPaymentQueue defaultQueue]restoreCompletedTransactions];     } else {         NSLog(@"Fail");     } }
1
0
365
Jun ’20