I'm implementing what essential amounts to an RSS reader for iPhone. I download a bunch of short messages and display them to the user in a list. Each message is encapsulated in a MyMessage object that contains the title, the body, url, etc.

I want to be sure to cache the 20 most recent messages. What is the best way to do this? Should I use a keyed archive, and just have the MyMessage class implement the NSCoding protocol. If I choose this approach, can I append new message to the file containing the archive (and similarly, can I delete old messages when the message count exceeds 20)?

Essentially my question is: is using a keyed archive the right approach? And if so, how can I append/delete messages from the archive as necessary?

Thanks!

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Why not use CoreData? Its fairly trivial to make that work with your simple object to cache.

link|improve this answer
Thanks.. Just read up on it.. It seems like it'll work just fine.. Saves me a lot of work.. – Wise Shepherd Nov 3 '10 at 19:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.