访问未知字典键的值

时间:2012-01-27 09:17:17

标签: objective-c ios json nsarray nsdictionary

我的JSON响应如下所示:

    {
    "themes": [
        [
            "Direction des Routes Secteur de Pithiviers ",
            "mairies",
            "Morailles 45300 PITHIVIERS LE VIEIL ",
            "0238345744",
            "48.823042",
            "2.365907"
        ],
        [
            "Crédit Mutuel Du Centre ",
            "banques",
            "agence de Pithiviers  33 r Am Gourdon 45300 PITHIVIERS",
            "0820834080",
            "48.703042",
            "2.145907"
        ]
    ]
}

如你所见,所有的密钥都是未知的,我没有Key:value,所以,我怎样才能引用每个值。

NSDictionary *allThemesDict=[[request responseString]JSONValue];
 NSArray *allThemesValues=[allThemesDict objectForKey:@"themes"];
    for (int i=0; i<[allThemesValues count]; i++) {
        NSDictionary *currentTheme=[allThemesValues objectAtIndex:i];//here i get the first 6 values, how can i display it?
        }

3 个答案:

答案 0 :(得分:2)

它们是数组,而不是字典。所以你可以像这样抓住数组:

NSDictionary *allThemesDict = [[request responseString] JSONValue];
NSArray *allThemesValues = [allThemesDict objectForKey:@"themes"];
for (int i=0; i<[allThemesValues count]; i++) {
    NSArray *currentTheme = [allThemesValues objectAtIndex:i];
    NSLog(@"currentTheme = %@", currentTheme);

    // Then access [currentTheme objectAtIndex:1] for example to get "mairies" in the first case.
}

答案 1 :(得分:1)

您的示例中只有一个键:顶级词典有一个名为“themes”的键。其他一切都是数组或原语。

假设您事先不知道“主题”键将被称为“主题”,您可以通过迭代字典来发现它。您可能会遇到一个问题,如果您不知道密钥是什么,您可能对数据知之甚少,无法预测值的类型和内容。这里的解决方案是与服务器开发人员商定数据格式的规范。作为参考,你迭代这样的字典(有多种方式):

for (id key in myDictionary) {
    //...
}

答案 2 :(得分:0)

您只想迭代数组吗?在这种情况下,这样的事情可以起作用:

    NSDictionary *currentTheme=[allThemesValues objectAtIndex:i];
        for (id item in currentTheme) {
            NSLog(@"item: %@", item);
        }
    }