字典转模型->把每一个模型存到数组->用indexPath访问数组的每一个对象并显示到cell上

字典转模型 就是利用for in遍历将字典中的每一个key value和模型中的属性匹配,如何匹配?利用模型的对象调用setvaluesforkeyswithdictionary方法。注意返回值肯定是模型的类型啊(常识),如果匹配的到,就表示符合将字典转成模型,然后将数据存进数组中保存,数组中的内容肯定是模型的类型。然后通过在cellforrowatindex 从模型中取出被indexpath.row标识的每一行数据显示到每个cell上。模型中的有多少个数据,那么cellforrowatindex就掉用多少次。细节问题:取出被indexpath.row标识的每一行,这些行的中的数据肯定是模型类型的数据,上面有提及。然后自定义的cell对象掉用setter方法并将模型类型的对象作为参数实现设置数据到cell上。因为每调用一次cellforrowatindex就会调用自定义cell的setter方法,把某一行的数据显示到cell上,所以数组中存储的所有数据都会按标识的顺序一次显示到cell上
精华:从转模型到使用数组中的模型数据的总过程为:将请求到的数据进行字典转模型然后存进去数组,这样以后就可以通过数组的下标拿到模型,然后可以通过模型的对象访问属性(实际上访问的数组中指定数据),从而拿到数组中指定的数据了。


字典转模型的三种做法

做法1:手动声明和实现字典转模型的方法,自行进行key value的匹配

#import "ViewController.h"
#import "ZB_Model.h"
@interface ViewController ()
@property(nonatomic,strong)NSMutableArray *DataArray;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    NSArray *responseObject = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"statuses" ofType:@"plist"]];
    
    NSMutableArray *tempArray = [[NSMutableArray alloc] init];
    // 遍历responseObject数组中的内容,因为responseObject数组中装的全是字典,所以利用for in遍历出每一个dic
    for (NSDictionary *dic in responseObject) {
        // 打印字典中的内容
        NSLog(@"%@",dic);
        ZB_Model *statusesModel = [ZB_Model returnVideoModelWithDictionary:dic];
        [tempArray addObject:statusesModel];
    }
    self.DataArray = tempArray;
    NSLog(@"%@",self.DataArray);
}

@end
#import <Foundation/Foundation.h>

@interface ZB_Model : NSObject

/** 新增加的smart_img 图片*/
@property(nonatomic,copy)NSString *smart_img;
/** 新增加的smart_img1 图片*/
@property(nonatomic,copy)NSString *smart_img1;
/** 新增加的smart_img2 图片*/
@property(nonatomic,copy)NSString *smart_img2;
/** 新增加的title  标题 */
@property(nonatomic,copy)NSString *title;
/** 新增加的source_name 来源名称 */
@property(nonatomic,copy)NSString *source_name;
/** 新增加的source_ico 来源图标 */
@property(nonatomic,copy)NSString *source_ico;

/** 新增加的type_id  1资讯2视频 */
@property (nonatomic, assign) int type_id;
/** 新增加的sys_tag 展示标签 1精,2热,3广告 */
@property(nonatomic,copy)NSString *sys_tag;
/** 新增加的url 跳转地址 */
@property(nonatomic,copy)NSString *url;

/*** 浏览人数 */
@property(nonatomic, copy) NSString *viewnum;

/** 图片*/
@property(nonatomic,copy)NSString *ImgDic3;

+(ZB_Model *)returnVideoModelWithDictionary:(NSDictionary *)dict;

@end


#import "ZB_Model.h"

@implementation ZB_Model

+(ZB_Model *)returnVideoModelWithDictionary:(NSDictionary *)dict{
    ZB_Model *model = [[ZB_Model alloc] init];
    // 取出dic字典中的text对应的value,放到模型的contentStr属性中存储
    model.title = dict[@"title"];
    model.viewnum = dict[@"viewnum"];
    model.source_name = dict[@"source_name"];
    model.ImgDic3 = dict[@"imageDic"][@"ImgDic3"];

    return model;
}

@end

做法2手动声明和实现字典转模型的方法并调用setValuesForKeysWithDictionary:

#import "ViewController.h"
#import "ZB_Model.h"
@interface ViewController ()
@property(nonatomic,strong)NSMutableArray *DataArray;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    NSArray *responseObject = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"statuses" ofType:@"plist"]];
    NSMutableArray *tempArray = [[NSMutableArray alloc] init];
    // 遍历responseObject数组中的内容,因为responseObject数组中装的全是字典,所以利用for in遍历出每一个dic
    for (NSDictionary *dic in responseObject) {
        // 打印字典中的内容
        NSLog(@"%@",dic);
        // 将字典转成模型
        ZB_Model *statusesModel = [ZB_Model returnVideoModelWithDictionary:dic];
        // 模型存到临时数组中
        [tempArray addObject:statusesModel];
        
    }
    // 临时数组赋值给全局的数组
    self.DataArray = tempArray;
        // 遍历全局数组的内容。经打印可以的得知,内容是ZB_Model类型的数据
        for (NSString *i in self.DataArray) {
            NSLog(@"%@",i);
        }
}

@end

#import <Foundation/Foundation.h>

@interface ZB_Model : NSObject

/** 新增加的smart_img 图片*/
@property(nonatomic,copy)NSString *smart_img;
/** 新增加的smart_img1 图片*/
@property(nonatomic,copy)NSString *smart_img1;
/** 新增加的smart_img2 图片*/
@property(nonatomic,copy)NSString *smart_img2;
/** 新增加的title  标题 */
@property(nonatomic,copy)NSString *title;
/** 新增加的source_name 来源名称 */
@property(nonatomic,copy)NSString *source_name;
/** 新增加的source_ico 来源图标 */
@property(nonatomic,copy)NSString *source_ico;

/** 新增加的type_id  1资讯2视频 */
@property (nonatomic, assign) int type_id;
/** 新增加的sys_tag 展示标签 1精,2热,3广告 */
@property(nonatomic,copy)NSString *sys_tag;
/** 新增加的url 跳转地址 */
@property(nonatomic,copy)NSString *url;

/*** 浏览人数 */
@property(nonatomic, copy) NSString *viewnum;

/** 图片*/
@property(nonatomic,copy)NSString *ImgDic3;

+(ZB_Model *)returnVideoModelWithDictionary:(NSDictionary *)dict;

@end


#import "ZB_Model.h"

@implementation ZB_Model

+(ZB_Model *)returnVideoModelWithDictionary:(NSDictionary *)dict{
    
    ZB_Model *model = [[ZB_Model alloc] init];
    
    [model setValuesForKeysWithDictionary:dict];
    return model;
}

/*
 不写下面这句代码,会报如下的错误。写了下面的代码,即使plist中有A字段,而模型中没有A字段也不会报错。
 '[<ZB_Model 0x6080000a4320> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key imageDic.'
 */
- (void)setValue:(id)value forUndefinedKey:(NSString *)key{
    
}

@end

做法3:利用框架进行字典转模型,不需要手动声明和实现字典转模型的方法

#import "ViewController.h"
#import "ZB_Model.h"
#import "MJExtension/MJExtension.h"
@interface ViewController ()
@property(nonatomic,strong)NSMutableArray *DataArray;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // 将字典转成模型
    self.DataArray = [ZB_Model mj_objectArrayWithFilename:@"statuses.plist"];
    NSLog(@"%ld",self.DataArray.count);
    NSLog(@"%@",self.DataArray);
   }

@end

#import <Foundation/Foundation.h>

@interface ZB_Model : NSObject

/** 新增加的smart_img 图片*/
@property(nonatomic,copy)NSString *smart_img;
/** 新增加的smart_img1 图片*/
@property(nonatomic,copy)NSString *smart_img1;
/** 新增加的smart_img2 图片*/
@property(nonatomic,copy)NSString *smart_img2;
/** 新增加的title  标题 */
@property(nonatomic,copy)NSString *title;
/** 新增加的source_name 来源名称 */
@property(nonatomic,copy)NSString *source_name;
/** 新增加的source_ico 来源图标 */
@property(nonatomic,copy)NSString *source_ico;

/** 新增加的type_id  1资讯2视频 */
@property (nonatomic, assign) int type_id;
/** 新增加的sys_tag 展示标签 1精,2热,3广告 */
@property(nonatomic,copy)NSString *sys_tag;
/** 新增加的url 跳转地址 */
@property(nonatomic,copy)NSString *url;

/*** 浏览人数 */
@property(nonatomic, copy) NSString *viewnum;

/** 图片*/
@property(nonatomic,copy)NSString *ImgDic3;

@end


[LS](https://pan.baidu.com/s/1pKSiEZD 密码 tmsq)

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,324评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,303评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,192评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,555评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,569评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,566评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,927评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,583评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,827评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,590评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,669评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,365评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,941评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,928评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,159评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,880评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,399评论 2 342

推荐阅读更多精彩内容

  • 第5章 引用类型(返回首页) 本章内容 使用对象 创建并操作数组 理解基本的JavaScript类型 使用基本类型...
    大学一百阅读 3,204评论 0 4
  • *面试心声:其实这些题本人都没怎么背,但是在上海 两周半 面了大约10家 收到差不多3个offer,总结起来就是把...
    Dove_iOS阅读 27,121评论 29 470
  • 返京。 省了早起,也省了没带身份证的麻烦,前一天试着约车,约到的是邯郸过来的顺风车,司机绕了很远的路,半天才接到我...
    还好你来了阅读 290评论 0 0
  • 一天下午,在闺蜜家喝下午茶。 男孩们挤到一个房间里,玩电脑游戏。 妈妈们坐在餐桌旁,吃橘子,聊怎么养多肉。 闺蜜的...
    唐砚阅读 2,320评论 24 102
  • 首先,对你说声抱歉,因为下载简书申请账号后,一直搁置在手机里面了,对这个app不怎么熟悉,昨天打开无意中日刷到那篇...
    cindyyyy阅读 207评论 0 1