私のプロジェクトには、次のような plist ファイルがあります。
そして私はこれをやっています
NSURL *file = [[NSBundle mainBundle] URLForResource:@"test" withExtension:@"plist"]; //Lets get the file location
NSDictionary *plistContent = [NSDictionary dictionaryWithContentsOfURL:file];
NSLog(@"dic::%@", plistContent);
NSArray *arrayRead = [plistContent allKeys];
NSLog(@"test::%@", arrayRead);
私がしているように見えるものはすべて、ログに (null) を返します。理由はありますか?