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.

I have an object. It has only two NSStrings as properties.

I created an array to hold several of these objects.

Do I need to use NSKeyedArchiver to save this array to disk, or can I just use NSUserDefaults?

share|improve this question

2 Answers

You can just use [[NSUserDefaults standardUserDefaults] setObject:myArray forKey:myKey]; for writing and [[NSUserDefaults standardUserDefaults] arrayForKey:myKey]; for reading (there is no setArray:forKey: as it's not needed).

Also, if you got an array that you don't want to store inside NSUserDefaults there's an easy possibility to write and read arrays: -[NSArray writeToFile:atomically:] and +[NSArray arrayWithContentsOfFile:]. There also the same methods for NSDictionary to easily read/write dictionaries. Of course you're always free to use NSKeyed(Un)Archiver as well.

share|improve this answer
If I try to do that I get an "attempt to insert non-property value" error. – node ninja Sep 19 '10 at 11:26
@awakeFromNib: What did you do ? I just verified with this code: NSArray *array = [NSArray arrayWithObjects:@"One", @"Two", nil]; [[NSUserDefaults standardUserDefaults] setObject:array forKey:@"TestKey"]; which works exactly as expected. – DarkDust Sep 19 '10 at 15:29

If your object is a custom class, you will need to use NSKeyedArchiver before you put the contents in NSUserDefaults. See here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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