Reputation: 1540
This may be a silly question, but I haven't been able to find the answer. Where on the device should InApp purchases be stored? Are they downloaded to the bundle?
Upvotes: 6
Views: 416
Reputation: 41
I put up a pretty useful sample that includes saving your purchases to NSUserDefaults as tc said above. I agree, that's the way to do it.
Let me know if you have any questions about the sample code.
The App Tree - In App Purchase Sample - Free
Upvotes: 4
Reputation: 33592
You have to store them yourself. I'd use NSUserDefaults for simplicity.
They aren't saved to your app bundle, since that would invalidate the signature.
Upvotes: 5