Is there any way to store my app data (Sqlite) locally and i can access that data after my app is deleted or reinstalled?

100 views Asked by At

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 ?

2

There are 2 answers

0
rounak On

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.

0
MANIAK_dobrii On

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.