iOS Offline Storage for Chat history

317 Views Asked by At

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?

1

There are 1 best solutions below

4
On

There are several options for offline storage in iOS

  1. SQLite
  2. CoreData
  3. 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.