Has anyone had any experience in saving app preferences (within app, not in Settings app) which involve images taken with the camera?
The prefs include NSStrings, UIImage, BOOLs etc. The UIImage is a pic taken with camera.
Could I store these all in an NSMutableArray and then just do something like this:
[array writeToFile:[self dataFilePath] atomically:YES];
Can an array hold such variety of objects? (and BOOL is not strictly an object I guess)