I'm attempting to save an object that has an NSMutableArray of nested objects. I want to use the NSCoding Protocol to save the file under the documents directory. Do I need to encode every object (including the nested ones) or just the super class itself? Right now I'm only encoding the super class' objects.
To better illustrate what my object hierarchy looks like:
Main Object
-NSString
-int
-NSMutableArray
-int
-double
-char