I am using the code found in this post: Mulitple Arrays From Plist, with the same plist formatting.
This works successfully, however I do not know how to save the cr
Here's the simplest way:
NSDictionary* dict = ...; [dict writeToFile:@"..." atomically:YES];
See the documentation for -writeToFile:atomically:.