私はこのコードを持っていますが、何が間違っているのかわかりません。以下のコードでわかるようにshifts.plist、私のsupporting filesフォルダーには plist ファイルがあります。これが私のplist構造です。

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]);
私は最終的にnameエントリを読み、UITableViewそれらを入力したいと思います。
以前NSLogは出力dictionaryしていましたが、次のようになりました。したがって、ファイルはそこにありますが、私が間違っているのは解析だけです。

ありがとう、
サム