0
votes
0answers
19 views

iOS: IAP handle a network error

I am developing an application using Storekit/StorekitDefines.h for In-App Purchases. In my application, users will be able to ask a question and, after a transaction has been made obtain an answer ...
0
votes
0answers
28 views

Restore purchase goes directly to paymentQueueRestoreCompletedTransactionsFinished:

I am trying to implement a restore feature with [[SKPaymentQueue defaultQueue] restoreCompletedTransactions]; The problem is that the code goes straight to ...
0
votes
1answer
29 views

Duration of auto-renewable at IAP

How can I know about duration of auto-renewable subscription between purchase-date and expire-date. For example, If user has purchased 1 month product by auto-renewable in 31 Jan, when is expire day? ...
0
votes
0answers
60 views

Is the array order of requested products from itunes store always same ? IAP

I request the products from the itunes store with these codes : - (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response { NSLog(@"Loaded list of ...
2
votes
1answer
83 views

IAP non-consumable item gives extra points after first purchase

I have one non-consumable IAP called "Pro Version". I give buyers some extra points and some access. There is no problem when they buy it for the first time. It gives the points and removes the ...
0
votes
1answer
49 views

IAP doesn't work on Real iPad

When I run the following code in simulator, it can get the IAP info successfully, but when it run on a real IPAD, "count" always = zero ... any ideas what's wrong?? Thanks. // Store Kit returns a ...
0
votes
1answer
146 views

in App Purchases iOS

I made my first app with IAP by this tutorial I made a singleton for InAppPurchaseManager, added 3 more purchases, methods for them and all works great. The problem is what my app is a gallery where ...
1
vote
1answer
40 views

How do I transition from a UIView to a UITableViewController using an IBAction in xcode?

I built my app as a single view application and then later added another view with an .xib. I get how to do that. But what I need to do now is add another view, but this is a UITableViewController ...
0
votes
0answers
101 views

How do I implement IAP tutorial using master view controller into my single view appication in xcode

I just finished the tutorial for IAP in ios 6 by Ray Wenderlich. I got the tutorial from this site. So I was able to build a practice app using the tutorial My problem is now implementing this in my ...
0
votes
0answers
125 views

In app purchases have stopped working when updated to xcode 4

Hi I have updated my xcode 3.2 project to work in xcode 4 but my in app purchases have suddenly stopped working. The problem is that the product request is sent and the purchase confirmation dialog ...
0
votes
0answers
195 views

In App Purchase “Thank you. Your purchase was successful.” alert window

Where is this alert window after successful IAP transaction? "Thank you. Your purchase was successful." The alert window of "Buy, Cancel" is being shown. After successful purchasing, however, the ...
2
votes
1answer
807 views

In-App Purchases test user doesn't work

I'm having issues getting In-App purchases to work. Every time I create a new test user and debug it on my iPhone after I hit okay with the password I automatically get "You've already purchased this ...
1
vote
0answers
284 views

in-app purchase works fine the first time but if I try again it executes code several times

The first Time I buy the 3 hints it works just fine, If I try to use it a second or a third time it keeps saying "You have purchased 3 Hints!" several times and I can't find what's wrong with it ...
0
votes
1answer
78 views

Can I limit the quantity of each of IAP items(sold out for 1 item)?

I wonder there is a way to limit each IAP items quantity. For example, if I sell item that quantity is 10 in iap, 10 people buy the item, and then that item buying is no available because there is ...