Reputation: 447
I'm currently working on an ios application that includes in app purchases. At the moment i store the purchased product identifiers in a file in the Documents folder. i assumed that that directory isn't available to users but i was informed that some pc applications are able to access that directory.
Does anyone have a suggestion to securely store the data on the device?
Upvotes: 3
Views: 1078
Reputation: 681
I would recommend you to have a look at this post:
It is a tutorial divided in two parts with practical examples.
Greetings,
Fabio @fcerullo
Upvotes: 1
Reputation: 1843
You need to use the keychain to store secured data.
http://dev-metal.blogspot.co.il/2010/08/howto-use-keychain-in-iphone-sdk-to.html
Upvotes: 1