I have created a plist that is initialized as an array of arrays of dictionaries. The plist stores dynamic data. Consequently, when the app terminates, there may be new dictionary elements to add. Or there may be new arrays of dictionary elements to add. Later, there may be less dictionary elements so that previous elements are no longer required. While there is a lot of discussion on adding elements to a plist, none seem to address my problem. Here is the initial plist description:
Key Type Value
Root Dictionary (2 items)
Hourly Data Array (1 item)
Item 0 Array (1 item) <--how do I add more of these
Item 0 Dictionary (3 items) <--how do I add more of these
Name String Joe
Rank String private
serialNo String 123456
NonHourly Data Array (1 item)
Item 0 Array (1 item)
Item 0 Dictionary (3 items)
Name String Jeff
Rank String private
serialNo String 654321
While I fully understand how to read in this plist file, I do not understand how to add array elements to the Hourly and NonHourly Data arrays, or how to add new Dictionary array items, and then write them back out to the plist.
So given the following code as a starting point, how do I complete this code to add the array elements and dictionary elements described above:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); // Create a list of paths
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *configPlist = [documentsDirectory stringByAppendingPathComponent:@"config.plist"];
NSFileManager *fileManager = [NSFileManager defaultManager];
NSMutableDictionary *data = [[NSMutableDictionary alloc] initWithContentsOfFile: configPlist];
...
[data writeToFile: configPlist atomically:YES];