How to persist and load an object which conforms to NSCoding protocol?

Posted by mystify on Stack Overflow See other posts from Stack Overflow or by mystify
Published on 2010-03-15T21:06:21Z Indexed on 2010/03/15 21:09 UTC
Read the original article Hit count: 204

I have made an class which conforms to the NSCoding protocol and does all the encode and decode stuff.

For my app, I simply want to persist an object from that class to the device and the next time when the app launches, I want to load that object back into memory.

Basically it's just an class which holds some user input information. For example the user starts writing a text but then quits the app. Next time I want to load that data object.

I guess I need NSKeyedArchiver? Is there a good tutorial on this? How do I do that?

© Stack Overflow or respective owner

Related posts about iphone

Related posts about persistence