目标c-对于包含字典数组的plist,如何添加和写出新的字典元素



我创建了一个plist,它被初始化为字典数组的数组。plist存储动态数据。因此,当应用程序终止时,可能会有新的字典元素需要添加。或者可能需要添加字典元素的新数组。稍后,可能会有更少的字典元素,从而不再需要以前的元素。虽然有很多关于向plist添加元素的讨论,但似乎没有一个能解决我的问题。以下是初始plist描述:

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

虽然我完全理解如何读取这个plist文件,但我不知道如何将数组元素添加到Hourly和NonHourly Data数组,也不知道如何添加新的Dictionary数组项,然后将它们写回plist。

因此,以下面的代码为起点,我如何完成这段代码来添加上面描述的数组元素和字典元素:

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];

好吧,在尝试了一个错误之后,我想出了如何做到这一点。首先,让我为要存储的数据提供一个定义。该数据适用于所有具有小时和非小时状态的军人。"小时数据"one_answers"非小时数据"被视为级别1数组。级别1阵列的元素被称为级别2阵列。二级阵列可以被认为是军人服役过的国家。二级阵列的元素是字典。每本字典都描述了一个人。

现在,对于答案,基本上我需要从内到外工作,并创建一个包含要存储的数据的字典的2级数组。然后将该级别2的数组添加到级别1的数组中。最后,级别1数组作为对象存储在plist的Hourly Data或Non-Hurly Data键中。以下是解决方案:

// Create an array of arrays of content encoded as dictionary objects for hourly data
armyPerson *aPerson;
NSArray *level1Element;
NSMutableArray *level2Array;    
NSMutableArray *level1Array = [[[NSMutableArray alloc] initWithObjects:nil] autorelease];
for (int i=0; i<[allHourlyPersons count]; i++) {
    level1Element = [allHourlyPersons objectAtIndex:i]; // grab the next level1 array element. 
    // Each level1 array element will have zero or more level2Arrays. The info for each level2 dictionary needs to be collected into
    // an level2Array element as individual dictionary objects
    level2Array = [[[NSMutableArray alloc] initWithObjects:nil] autorelease];   // initialize the level2Array
    for (int j=0; j<[level1Element count]; j++) {
        aPerson = [level1Element objectAtIndex:j];  // grab the next armyPerson
        // For each episode, create a dictionary object
        NSDictionary *level2Element = [NSDictionary dictionaryWithObjectsAndKeys:aPerson.name, @"Name", 
                                                                                    aPerson.rank, @"Rank",
                                                                                    aPerson.serialNo, @"serialNo", nil];
        [level2Array addObject:level2Element];  // save the info for this episode
    }
    // Now that we have all the episodes for this level1Element collected into an array of dictionary objects,
    // we need to add this array to the level1 array
    [level1Array addObject:level2Array];
}
// Finally, we need to create the key-value pair for the hourly source array
[data setObject:level1Array forKey:@"Hourly Data"];
...
Do the same for the Non-Hourly Data prior to:
[data writeToFile: configPlist atomically:Yes];

最新更新