码迷,mamicode.com
首页 > 其他好文 > 详细

字典转模型和懒加载

时间:2016-06-01 01:28:21      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

1.字典转模型

创建一个类,继承自NSObject,属性名和字典的键一致

可以实现字典转模型

@implementation TZMessage

+(instancetype)messageWithDict(NSDictioary*)dict{

  TZMessage *mode = [[TZMessage alloc] init];

  [mode setValuesForKeysWithDictonary:dict];

  return mode;

}

2.懒加载

+(NSArray *)messages{

  if(!_messages){

    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"messages.plist" ofType:nil];

    NSArray *array = [NSArray arrayWithContentsOfFile:filePath];

    NSMutableArray *tempArray = [NSMutableArray array];

    for(NSDictionary *dict  in array){

      TZMessage *mode = [ TZMessage messageWithDict:dict];

      [tempArray  addObject:mode]

    }

    _messages = tempArray;

  }

  retrun  _messages;

}

字典转模型和懒加载

标签:

原文地址:http://www.cnblogs.com/PJXWang/p/5548159.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!