Want to know ways to store OBJECTS of a Class in some persistent storage. (like PLIST or sqlite). But as far as i know we cannot STORE objects of a class in PLIST.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To store the objects as persistent object in your application you can use NSKeyedArchiver, There is a very nice blog written by Si Ma: http://keeptheseinmind.blogspot.in/2011/10/nskeyedarchiver-tutorial.html
There is a video as well: http://www.youtube.com/watch?v=Eb0J3sn4z08
Please mark it as correct answer if helps…;)