I thought one of these would do it, none of them are getting called -_-

- (void)paymentQueue:(SKPaymentQueue *)queue updatedTransactions:(NSArray *)transactions
{
    NSLog(@"flag paymentQueue");

// spinner.hidden=YES; //where does this go?

    for (SKPaymentTransaction *transaction in transactions)
    {
        switch (transaction.transactionState)
        {
            case SKPaymentTransactionStatePurchasing:
            //    [self stillPurchasing]; // this creates an alertView and shows
                NSLog(@"flag SKPaymentTransactionStatePurchasing");

                break;
            case SKPaymentTransactionStatePurchased:
                NSLog(@"flag SKPaymentTransactionStatePurchased");

                [self completeTransaction:transaction];
                break;
            case SKPaymentTransactionStateFailed:
                NSLog(@"flag SKPaymentTransactionStateFailed");

                [self failedTransaction:transaction];
                break;
            case SKPaymentTransactionStateRestored:
                NSLog(@"flag SKPaymentTransactionStateRestored");

                [self restoreTransaction:transaction];
           //     spinner.hidden=YES;
                break;

thanks!!!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You can hide spinner in following method-

    - (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response {
      [target hideSpinner];
     }
link|improve this answer
feedback

it should be good. You should hide your spinner in the 3 cases : - SKPaymentTransactionStatePurchased - SKPaymentTransactionStateFailed - SKPaymentTransactionStateRestored

Have you checked your delegates ? your class should implement the delegate method of :
-> SKPaymentTransactionObserver

Mine is declared like that : @interface InAppPurchaseStoreManager : NSObject

link|improve this answer
SKPaymentTransactionStatePurchased and SKPaymentTransactionStateFailed are for if the user buys product or presses cancel right? I want to hide the uiiactivityindicator when apple's in app purchase alert view first comes up, right now my spinner is visible behind the alert view. -thanks for the help!! – rowdyruckus Jan 17 at 3:29
You were right about the delegate Diwann, thanks!! Also i was loading the store earlier, thinking this would speed things up. Loading when needed and then when the products are received seems to be a good place to stop the spinner. – rowdyruckus Jan 17 at 3:56
feedback

Your Answer

 
or
required, but never shown

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