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?
|
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? |
|||
|
|
|
You can just use 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. |
|||||
|
|
If your object is a custom class, you will need to use |
|||
|
|