I have this code and can't figure out what I'm doing wrong. As you can see in the code below I have a plist file called shifts.plist which is in my supporting files folder. Here is my plist structure.

NSString *path = [[NSBundle mainBundle] pathForResource:@"shifts" ofType:@"plist"];
dictionary = [[NSMutableDictionary alloc]initWithContentsOfFile:path];
cell.textLabel.text = [secondTableInfo objectAtIndex:indexPath.row];
NSLog(@"%@",[[dictionary objectForKey:@"name"]objectAtIndex:0]);
I would ultimately like to read the name entries and populate a UITableView with them.
I used NSLog to output dictionary and I got the following. So the file is there it's just
the parsing that I'm getting wrong.

Thanks,
Sam
Nameis with a capital N while inobjectForKey:you use a small n 2) you try to callobjectAtIndexon the object retrieved from the dictionary. As you already get the string object returned from the dictionary, you should not need to callobjectAtIndex:anymore. – Dennis Bliefernicht Nov 16 '11 at 3:20