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:
[[SKPaymentQueue defaultQueue] addTransactionObserver:self];
[[SKPaymentQueue defaultQueue]restoreCompletedTransactions];
} else {
NSLog(@"Fail");
}
}
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 {
[[SKPaymentQueue defaultQueue] addTransactionObserver:self];
[[SKPaymentQueue defaultQueue]restoreCompletedTransactions];
} else {
NSLog(@"Fail");
}
}