QQ好友列表数据模型封装

QQ好友中的信息较多,如果我们单独从plist 中直接取出数据 是可以解决问题 

但是相当复杂,以为列表中分组 ,每组中还有不同信息 

大致模型是 数组套数组  数组套字典 

所以我们要封装数据模型

//
//  GPGroupController.h
//  02-好友分组
//


#import <UIKit/UIKit.h>

@interface GPGroupController : UIViewController

@end

//
//  GPGroupController.m
//  02-好友分组
//


#import "GPGroupController.h"
#import "GPGroup.h"
#import "NSArray+LocalPrint.h"
@interface GPGroupController ()

@property(nonatomic,strong)NSArray *groups;

@end

@implementation GPGroupController

-(NSArray *)groups
{
    if (_groups == nil) {
        //1.
        NSString *path = [[NSBundle mainBundle]pathForResource:@"qq_group.plist" ofType:nil];
        NSArray * dicts =[NSArray arrayWithContentsOfFile:path];
        
        //2.
        NSMutableArray *objs = [NSMutableArray array];
        for(NSDictionary *dic in dicts)
        {
            GPGroup *group = [GPGroup groupWthDict:dic];
            [objs addObject:group];
        }
        //3.
        _groups = objs;
    }
    return _groups;
}

- (void)viewDidLoad {
    [super viewDidLoad];
    NSLog(@"%@",self.groups);
    // Do any additional setup after loading the view.
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

/*
#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}
*/

@end

//
//  GPFriend.h
//  02-好友分组

#import <Foundation/Foundation.h>

@interface GPFriend : NSObject
@property(nonatomic,copy)NSString *icon;
@property(nonatomic,copy)NSString *message;
@property(nonatomic,copy)NSString *name;

+(id)friendWithDict:(NSDictionary *)dict;
-(id)initWithDict:(NSDictionary *)dict;
@end

//
//  GPFriend.m
//  02-好友分组
//

#import "GPFriend.h"

@implementation GPFriend
+(id)friendWithDict:(NSDictionary *)dict
{
    return [[self alloc]initWithDict:dict];
}
-(id)initWithDict:(NSDictionary *)dict
{
    if (self = [super init]) {
        [self setValuesForKeysWithDictionary:dict];
    }
    return self;
}

- (NSString *)description
{
    return [NSString stringWithFormat:@"icon=%@,name=%@,message=%@", _icon,_name,_message];
}
@end


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值