ShravanKumar Teegala
ShravanKumar Teegala

Reputation: 31

iOS Offline Storage for Chat history

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

Answers (1)

KrishnaCA
KrishnaCA

Reputation: 5695

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.

Upvotes: 0

Related Questions