Reputation: 1534
I am facing some issue in my application regarding storage, i wanna store my app data locally in iPad and it can be accessible after deleting the app or app reinstalled . i wanna send my old app data after reinstalling the app. is there any approach so that i can implement it ?
Upvotes: 1
Views: 87
Reputation: 6032
The only way to persist data locally even when app is removed is using a keychain. While I'm not sure about size limits and stuff. And, for sure, there some other ways with jailbroken devices.
Upvotes: 0
Reputation: 9387
Items in the keychain are kept even after your app is deleted, so you could store your data there, and retrieve it on re-install. Don't misuse it though, as keychain's main purpose is to store sensitive data like passwords, auth tokens etc.
Upvotes: 1