Let's say I create an object like this:
Person:
NSString *name;
NSString *phone;
NSString *address
I create several of these objects. Then I create an NSMutableArray called people and store them in there.
Can I save this array to disk with Array writeToFile? Does it need to be converted to NSData?