I am trying to handle cancel button by handling SKErrorPaymentCancelled error code. However SKErrorPaymentCancelled error code and SKPaymentTransactionStateFailed state returns same value. So all SKPaymentTransactionStateFailed states act like user canceled the transaction.Is there a way to distinguish these two codes?
my code is like this :
case SKPaymentTransactionStateFailed:
{
if (transaction.error.code == SKErrorPaymentCancelled)
{
[kUIActivator stopAnimating];
button1.enabled = YES;
}