-2

我如何获得Entry 1


_contentData 数组:

(
    {
    id = 1;
    name = "Entry 1";
},
    {
    id = 2;
    name = "Entry 2";
},
)

代码:

NSLog(@"%@", [_contentData objectAtIndex:0]);

{
id = 1;
name = "Entry 1";
}

代码:

[_contentData objectAtIndex:0] objectAtIndex:0])

Error: Crash App
4

1 回答 1

6

你在这里拥有的是一个NSdictionnary内部,NSArray 所以你应该做的是:

[[_contentData objectAtIndex:0] valueForKey:@"name"]

于 2013-04-26T22:54:02.040 回答