How do I store/retrieve an NSMutableArray of objects? The easy / fast way please. Thanks!
+1
A:
Archiving? Missed the iPhone tag, not sure if this will work on the iPhone or not.
Rulmeq
2010-05-24 11:38:45
+4
A:
It depends on what format you'd like to use. If you are fine with using property lists, then you can use writeToFile to save the array, and you can use arrayWithContentsOfFile to load it back again.
Michael Aaron Safyan
2010-05-24 11:40:05
This will only work if the objects in the array are property list objects. Otherwise, the poster will have to use archiving.
JeremyP
2010-05-24 14:51:24