Reputation: 31
I want to store the offline messages, in Chatting Application for Chat history, with text, image, Video thumb with Video url link and location (lat,long) values.
How to store in offline and maintain DataBase?
Upvotes: 0
Views: 330
Reputation: 5695
There are several options for offline storage in iOS
- SQLite
- CoreData
- NSCoding
For this particular task, I believe CoreData will do a better job. It is secure.
You can start with CoreData with the following tutorial. I suggest you to watch the following video for best practices in core data.
Upvotes: 0