I have a series of nested objects that I am needing to put through the NSCoding protocol so that I can save the top level object into NSUserDefaults.
Here is the structure of objects:
'Instructor' class
- NSMutableArray that holds instances of...
'Class' class
- NSMutableArray that holds instances of...
'Student' class
- Name Property
- Number Property
- Money Property
I am needing to save an instance of Instructor to NSUserDefaults or to documents for the app. As you can see the Instructor object is holding an array that is then holding instances of a class. That class object is holding instances of students.
Is the NSCoding protocol recursive? What I mean by that is if I add the NSCoding protocol to each class, I could then save an Instructor object and it would recursively encode the contained objects?
Would it then work the same way while decoding? I could just decode the one instructor class and it would recursively decode the objects contained because they also conform to the NSCoding protocol?
How could I go about setting this up?
NSUserDefaults
isn't an appropriate place to store that kind of user data. Why not just store it as a custom document in theDocuments
directory? – Griswold