Deepak Carpenter
Deepak Carpenter

Reputation: 1534

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

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

Answers (2)

MANIAK_dobrii
MANIAK_dobrii

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

rounak
rounak

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

Related Questions