在文件中有9个字典,每个字典有两个键。我想获得一个字典数组。我得到的数组元素是:0 这是代码:
NSString * path = [[NSBundle mainBundle]pathForResource:@"List" ofType: @"plist"];
NSArray *array = [NSArray arrayWithContentsOfFile:path];
提前致谢
答案 0 :(得分:0)
NSString *file = [[NSBundle mainBundle] pathForResource:@"List" ofType:@"plist"];
NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile:file];
NSArray *array = [dict objectForKey:@"Array"];
希望这有帮助
你的plist是一个字典而不是一个数组。所以看看这个。