我的文件中有以下代码
NSString *filePath = [[NSBundle mainBundle]pathForResource:@"images" ofType:@"plist"];
NSArray *array = [[NSArray alloc]initWithContentsOfFile:filePath];
for (id dict in array) {
NSLog(@"This is the id: %@" ,[dict objectForKey:@"Id"]);
}
当我在调试器上运行它时,它会在 NSString *filePath 行上返回“invalid CfStringref”。
无论我尝试什么代码,我都无法通过这个。
有任何想法吗?
plist 也是一个字典数组,但我无法解析它们,因为代码不起作用