0

在过去的几天里,我一直在努力解决以下问题

我需要在字典的字典深处设置一个键和一个值。我知道要设置键的字典的键,但我不知道如何到达那里。密钥存储在一个数组中。

说,我有一个包含以下键的字典,每个键的值是另一个字典。

- myDict
    - A
      - A
        - A
        - B
      - B
        - A
        - B
    - B
      - A
        - A
        - B
      - B
        - A
        - B

我还有以下数组:

[A, A, B]

这意味着,我想在 A->A->B 处为字典中的键设置一个值。这等于以下内容:

[[[[myDict objectForKey:@"A"] objectForKey:@"A"] objectForKey@"B"] setValue:myValue forKey:myKey]

有谁知道我可以实现这一目标的方法?我想我应该保留对字典的引用,遍历数组中的对象并转到字典中的“下一级”并保留对此的引用,当到达数组中的最后一个对象时,设置键的值。我的问题是,我不知道如何解决这个问题。为了保持对字典的引用,当我进入下一个级别时,我需要初始化一个新字典,对吗?这导致我创建一个只包含当前级别的对象的新字典,因此我最终不会为原始字典中的键设置值。

任何代码示例或伪代码将不胜感激。

4

3 回答 3

1

在我看来,您只需[yourArray componentsJoinedByString:@"."]获取一个密钥路径,然后使用它valueForKeyPath:来获取适当的值。

于 2012-06-03T19:22:34.923 回答
0

你会做这样的事情,而不是说这是“确切”的答案,但应该让你弄清楚你的确切需求。

for(NSString* key in [myDict allKeys]) {

    NSString *yourValue = ....
    NSDictionary *dict = [[myDict objectForKey:key] objectForKey:key];// Will get you to A->A

    for(NSString *levelKey in [dict allKeys]) {

    //Setting Value for A->A->(A) & A->A->(B)

          [dict setValue:yourValue forKey:levelKey];      
    }

}
于 2012-06-03T18:20:49.983 回答
0

这个答案应该被忽略。相反,请使用@Chuck 发布的方法。

我最终编写了以下两种方法来解决问题。这是受到@nhahtdh 的启发。这些方法非常适合一个类别,但我以前从未写过一个类别。有一天,我可能会将这些归为一类。如果有人想这样做,请在此处发布结果。

/**
 *  Sets the value in a dictionary with a keypath. Uses either the first or the last key in the keypath as the key to set the value for.
 *  @param value Value to set.
 *  @param dictionary Dictionary to set the value in.
 *  @param path Path for the key. Last or first object is used as the key for the value.
 *  @param readFromEnd Whether or not to read the path from the end.
 */
 + (void)setValue:(id)value inDictionary:(NSMutableDictionary *)dictionary withKeyPath:(NSArray *)path readFromEnd:(BOOL)readFromEnd
{
    NSMutableArray *mutablePath = [NSMutableArray arrayWithArray:path];
    NSString *key;
    if (readFromEnd)
    {
        key = [mutablePath lastObject];
        [mutablePath removeLastObject];
    }
    else
    {
        key = [mutablePath objectAtIndex:0];
        [mutablePath removeObjectAtIndex:0];
    }
    [self setValue:value forKey:key inDictionary:dictionary withKeyPath:mutablePath readFromEnd:readFromEnd];
}

/**
 *  Sets the value in a dictionary with a keypath.
 *  @param value Value to set.
 *  @param key Key for the value.
 *  @param dictionary Dictionary to set the value in.
 *  @param path Path for the key.
 *  @param readFromEnd Whether or not to read the path from the end.
 */
+ (void)setValue:(id)value forKey:(NSString *)key inDictionary:(NSMutableDictionary *)dictionary withKeyPath:(NSArray *)path readFromEnd:(BOOL)readFromEnd
{
    if (path.count == 0)
        [dictionary setValue:value forKey:key];
    else
    {
        NSMutableArray *mutablePath = [NSMutableArray arrayWithArray:path];
        NSString *currentKey;
        if (readFromEnd)
        {
            currentKey = [mutablePath lastObject];
            [mutablePath removeLastObject];
        }
        else
        {
            currentKey = [mutablePath objectAtIndex:0];
            [mutablePath removeObjectAtIndex:0];
        }
        [self setValue:value forKey:key inDictionary:[dictionary objectForKey:currentKey] withKeyPath:mutablePath readFromEnd:readFromEnd];
    }
}
于 2012-06-03T19:14:27.430 回答