When I am creating a simple application for plist shown in below link:
http://iosdevelopertips.com/data-file-management/reading-a-plist-into-an-nsarray.html
I think you could try something like this:
NSMutableDictionary *dict = [[NSMutableDictionary alloc] initWithContentsOfFile:path];
NSMutableArray *array = [dict objectForKey:@"Root"];
// Show the string values
for (NSString *str in array)
{
NSLog(@"--%@", str);
}
If that helped, please, drop a line. :)
Cheers, Kamil