码迷,mamicode.com
首页 > 移动开发 > 详细

菜鸟ios开发

时间:2015-05-31 01:18:55      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

- (NSArray *)groups

{

    if (_groups == nil) {

       // NSArray *dictArray = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"friends.plist" ofType:nil]];

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

        NSArray *dictArray = [[NSArray alloc]initWithContentsOfFile:path];

        

        NSMutableArray *groupArray = [NSMutableArray array];

        for (NSDictionary *dict in dictArray) {

            CHFriendGroup *group = [CHFriendGroup groupWithDict:dict];

            [groupArray addObject:group];

        }

        

        _groups = groupArray;

    }

    return _groups;

}

//懒加载

菜鸟ios开发

标签:

原文地址:http://www.cnblogs.com/software00/p/4541299.html

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