Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
    }
share|improve this question

1 Answer

Wallahi I don't know :( , I have same issue which SKErrorPaymentCancelled and SKPaymentTransactionStateFailed have same Code in any condition. If someone can answer this issue i will be glad also ....

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.