You need to call objectForKey:
on the dictionary to get one of the arrays, and then call objectAtIndex:0
(or just lastObject
) on the array to get the string. You can combine these two method calls into one line of code, for example:
[[dictionary objectForKey:@"All Items"] lastObject];
Marc Charbonneau
2009-06-04 02:22:07