Saroj Kumar ojha
Saroj Kumar ojha

Reputation: 485

Where to store SQLite file from app user

In my project I have stored my sqlite(DB file) file in Document directory and also set UIFilesharingMode - NO , but now user can able to acces the file using Xcode->orginizor and also he can able to modify in table and able to change the data in that dable .

My requirement is, how I can hide or restrict user to not access that file. If any one have any intelligent idea please share me.

Thanks.

Upvotes: 0

Views: 158

Answers (1)

ugur
ugur

Reputation: 842

You have to use encryption. There's no way to prevent someone accessing Documents folder and there's nowhere for you to store the sqlite file.

Upvotes: 3

Related Questions