carloe
carloe

Reputation: 1540

Where are InAPP purchases stored?

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

Answers (2)

Brian C Singer
Brian C Singer

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

tc.
tc.

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

Related Questions