0

this question might be a tad unspecific, But im building my own IM app for ios, and i was wondering what mechanisms are generally used to store and manage messages. ie the database or files management systems Eg like in whatapp.

Just the names would be enough i'll do the following research.

Thankyou.

Ankit
  • 1

1 Answers1

0

A messaging app would generally require the data to be relational so here's a couple of names for you to research:

  • SQLite
  • Core Data
neilco
  • 7,964
  • 2
  • 36
  • 41
  • Thanks, as novice as this sounds, even for the thread of messages, or would it be in a string file or something? Thanks – Ankit Dec 05 '13 at 13:47
  • You'll want to store the messages in a database of some description rather than a text file. – neilco Dec 05 '13 at 13:58