标签:模态方法解析数据 模态方法 kvc方法解析数据 解析字典中的数据
NSString *path =[[NSBundle mainBundle] pathForResource:@"StudentArr" ofType:@"plist"];
self.stuArr =[NSMutableArray arrayWithContentsOfFile:path];
用self.stuArr 来接收收据,这个数组里面全是字典
代码:
for (NSMutableDictionary *dic in self.stuArr)
代码:
Student *stu=[[Student alloc] init];
[self.stu setValuesForKeysWithDictionary:dic];
到这步结束之后,就可以实现stu的点语法调用字典中value了
代码:
[self.arr addObject:stu];
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:模态方法解析数据 模态方法 kvc方法解析数据 解析字典中的数据
原文地址:http://blog.csdn.net/mltianya/article/details/47439629