Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Storing custom objects in an NSMutableArray in NSUserDefaults
How to store custom objects in NSUserDefaults

I tried to store an object instantiated from a class I wrote called "Animal" in an NSMutableArray to be stored in NSUserDefaults. However, I get this error.

[NSUserDefaults setObject:forKey:]: Attempt to insert non-property value '(
    "<Animal: 0xcea7060>"
)' of class '__NSArrayM'.  Note that dictionaries and arrays in property lists must also contain only property values.

What does this mean? Perhaps I cannot store objects in NSMutableArrays to be stored in NSUserDefaults?

share|improve this question

marked as duplicate by Josh Caswell, Saphrosit, Till, BoltClock Apr 13 '12 at 12:34

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 2 down vote accepted

NSUserDefaults can store arrays and dictionaries, mutable or not, but only if they contain property-list-legal classes (NSNumber, NSString, NSData, and a few others). For other classes, you should serialize the object(s) into an NSData before putting it into NSUserDefaults (or into a collection which you're putting into NSUserDefaults or writing to a property list).

Putting custom classes in NSUserDefaults doesn't happen often in most apps, so you might also consider whether your Animals really belong there. Remember, NSUserDefaults is for settings, state, and other small things -- the data your app manages are better kept elsewhere. Use archiving or property lists to write files in your app's sandbox, or Core Data (or some other database) for such things.

share|improve this answer

you may check out Archiveor Serialization

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.