What is the best practice to store sensitive(not secure) data on iOS devices?
Where should I store information that user bought something in app? For example where should I store BOOL showAds
variable if user bought "Remove Ads"?
I do understand that everything breakable, especially on jailbroken devices, I just asking what is the best practice.
My variants:
.plist
in App Documents -- Editable using iFunBox, for example- NSUserDefaults -- Same here, I guess
- Keychain -- best variant in my opinion so far