我的项目中有一个 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)。任何想法为什么?