Ohhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
NSArray * plistContents = [NSArray arrayWithContentsOfFile:pathToPlist];
NSArray * titles = [plistContents valueForKey:@"Title"];
NSArray * descriptions = [plistContents valueForKey:@"Description"];
The secret here is that a call valueForKey:in an array returns a new array of objects containing the result of the call valueForKey:for each thing in the array. And a call valueForKey:in the dictionary can be equivalent to using objectForKey:(if the key you are using is the key in the key-value pair). See the documentation for more information .
: "" , , , -description ( ).