Posts

Post not yet marked as solved
1 Replies
200 Views
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");     } }
Posted
by jsky.
Last updated
.