I'm having trouble retrieving a saved NSMutableArray containing a custom object. The app crashes and the console reports http://pastie.org/1226822. Here is my objects .h file http://pastie.org/1226823. Here is my objects .m file http://pastie.org/1226826. Here is how I save my data http://pastie.org/1226830. Here is how I retrieve my data http://pastie.org/1226831. Thanks in advance.
|
|
Fixed. I used Brad Larson's code at http://stackoverflow.com/questions/537044/storing-custom-objects-in-an-nsmutablearray-in-nsuserdefaults. I think that there was a problem with how I added the data back into my array, but it works now.
|
|||||
|
|
The console tell you about the whole problem. Your
The KeyArchiver will call your class to init a new object based on the decoding data. You should use |
|||
|
|
|
The problem isn't the NSMutableArray or how you are calling NSKeyedArchiver. The problem is that the objects inside the array are themselves not archivable. You need your objects to implement the NSCoding protocol. There is plenty of documentation out there on how to do that, but basically you just add an |
|||
|
|