Controller减压

思路

MVC分工明确,各司其职。
Model里面进行异步请求数据,不要在controller里面进行操作。
Model里进行网络请求和数据解析,那么问题了,项目越做越大,会有好多个Model,如果分别在不同的Model里进行网络请求和数据解析,还是难以查找维护,所以,创建一个NetTools专门进行网络请求和数据解析,把Model头文件导过去就可以了。

我见过太多的代码都是在controller里面进行异步请求数据,更有甚者,在每个controller里面进行数据解析,简单的几个功能,controller里面代码上千行,毫无封装可言!
写这篇文章是想彻底的解决这样低质量代码。
本文由浅到深,先使用plist数据,以便与异步请求数据形成对比.
随后另写一篇文章写一下异步请求数据如何封装,以及使用plist和异步请求数据的原理,区别,涉及到程序执行的先后顺序。
懒加载的深刻理解,
异步的深刻理解!
只有理解了原理,写的的代码才够扎实,遇到问题才知道怎么解决。
而不是仅仅模仿套路来实现功能,事实上,好多"套路"是有问题的,结构不清晰的。
只有研究出自己的套路才是最好的。
这个Demo没有JSON,我却使用了JSONModel,之前一直用MJExtension,用JSONModel比较少,想尝试下JSONModel。
效果图:

效果图.png

数据结构:

数据结构.png

Model:(使用了JSONModel三方框架)

h文件
//  Created by Mac on 2017/8/29.
//  Copyright © 2017年 Mac. All rights reserved.
//

#import "JSONModel.h"


@interface CarModel : JSONModel
@property (nonatomic,copy)NSString * name;
@end

m文件不用做任何操作,这就是使用JSONModel的优势

另一个Model

h文件
//  Created by Mac on 2017/8/29.
//  Copyright © 2017年 Mac. All rights reserved.
//

#import "JSONModel.h"

@protocol CarModel;

@interface GroupModel : JSONModel

@property (nonatomic,copy)NSString * title;
@property (nonatomic,copy)NSString * footer;
@property (nonatomic)NSArray<CarModel> * cars;


+ (void)wangjie:(void(^)(NSArray * array))success error:(void(^)())error;

@end

m文件
//  Created by Mac on 2017/8/29.
//  Copyright © 2017年 Mac. All rights reserved.
//

#import "GroupModel.h"

@implementation GroupModel

+ (void)wangjie:(void(^)(NSArray * array))success error:(void(^)())error{

    NSString * path = [[NSBundle mainBundle] pathForResource:@"wjTest.plist" ofType:nil];
    NSArray * arrayDict = [NSArray arrayWithContentsOfFile:path];
    
    NSMutableArray * arrayModels = [NSMutableArray array];
    for (NSDictionary * dic in arrayDict) {
        GroupModel * model = [[GroupModel alloc]initWithDictionary:dic error:nil];
        
        //NSLog(@"model--%@",model.cars);
        [arrayModels addObject:model];
    }
   
    if (success) {
        success(arrayModels.copy);
    }

}


@end


Controller

//
//  ViewController.m
//  TableView
//
//  Created by Mac on 2017/8/6.
//  Copyright © 2017年 Mac. All rights reserved.
//

#import "ViewController.h"
#import "GroupModel.h"
#import "CarModel.h"
@interface ViewController ()<UITableViewDataSource,UITableViewDelegate>
@property (nonatomic,strong)NSArray * groups;
@property (nonatomic,strong)UITableView * tableView;
@end

@implementation ViewController


- (void)setArray:(NSArray *)array{
    _groups = array;
    // 重新加载
    [self.tableView reloadData];
}


- (void)viewDidLoad {
    [super viewDidLoad];
    
    [self initData];
    [self createTableView];
    
}

- (void)initData{
    
    [GroupModel wangjie:^(NSArray *array) {
        self.groups = array;
        NSLog(@"成功");
    } error:^{
        NSLog(@"出错了");
    }];

}


- (void)createTableView{
    
    _tableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height) style:UITableViewStyleGrouped];
    
    [self.view addSubview:_tableView];
    _tableView.delegate = self;
    _tableView.dataSource = self;
}



#pragma mark - 段数
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return self.groups.count;
}


#pragma mark - 行数
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    GroupModel * model = self.groups[section];
    return model.cars.count;
}


#pragma mark - 行内容
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    GroupModel * groupModel = self.groups[indexPath.section];
    CarModel * carModel = groupModel.cars[indexPath.row];
    static NSString * ID = @"cell";
    UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:ID];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];
    }
    cell.textLabel.text = carModel.name;
    return cell;

}


#pragma mark - 行高
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
    return 44;
}


#pragma mark - 段头
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
    GroupModel * model = self.groups[section];
    return model.title;
}


#pragma mark - 段脚高度
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
    return 50;
}


#pragma mark - 段脚
-(NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{
    GroupModel * model = self.groups[section];
    return model.footer;
}


#pragma mark - 隐藏状态栏
- (BOOL)prefersStatusBarHidden{
    return YES;
}


@end

使用了UITableViewCell,所以没有自定义cell,也不用封装View
以后写关于View极致的封装

其实,Model还可以这样写,少写一个文件
把两个Model合并,可以少创建一个文件

h文件
// 
//  CarModel.h
//  TableView
//
//  Created by Mac on 2017/8/29.
//  Copyright © 2017年 Mac. All rights reserved.
//

#import "JSONModel.h"

@protocol CarModel;

@interface CarModel : JSONModel
@property (nonatomic,copy)NSString * name;

@end

@interface GroupModel : JSONModel

@property (nonatomic,copy)NSString * title;
@property (nonatomic,copy)NSString * footer;
@property (nonatomic)NSArray<CarModel> * cars;


+ (void)wangjie:(void(^)(NSArray * array))success error:(void(^)())error;


@end


m文件

//
//  CarModel.m
//  TableView
//
//  Created by Mac on 2017/8/29.
//  Copyright © 2017年 Mac. All rights reserved.
//

#import "CarModel.h"

@implementation CarModel

@end


@implementation GroupModel

+ (void)wangjie:(void(^)(NSArray * array))success error:(void(^)())error{
    
    NSString * path = [[NSBundle mainBundle] pathForResource:@"wjTest.plist" ofType:nil];
    NSArray * arrayDict = [NSArray arrayWithContentsOfFile:path];
    
    NSMutableArray * arrayModels = [NSMutableArray array];
    for (NSDictionary * dic in arrayDict) {
        GroupModel * model = [[GroupModel alloc]initWithDictionary:dic error:nil];
        
        //NSLog(@"model--%@",model.cars);
        [arrayModels addObject:model];
    }
    
    if (success) {
        success(arrayModels.copy);
    }
    
}


@end

也可以这样


//
//  GroupModel.h
//  TableView
//
//  Created by Mac on 2017/8/29.
//  Copyright © 2017年 Mac. All rights reserved.
//

#import "JSONModel.h"

@protocol CarModel;

@interface GroupModel : JSONModel

@property (nonatomic,copy)NSString * title;
@property (nonatomic,copy)NSString * footer;
@property (nonatomic)NSArray<CarModel> * cars;


+ (void)wangjie:(void(^)(NSArray * array))success error:(void(^)())error;

@end


@interface CarModel : JSONModel

@property (nonatomic,copy)NSString * name;


@end



//
//  GroupModel.m
//  TableView
//
//  Created by Mac on 2017/8/29.
//  Copyright © 2017年 Mac. All rights reserved.
//

#import "GroupModel.h"

@implementation GroupModel

+ (void)wangjie:(void(^)(NSArray * array))success error:(void(^)())error{

    NSString * path = [[NSBundle mainBundle] pathForResource:@"wjTest.plist" ofType:nil];
    NSArray * arrayDict = [NSArray arrayWithContentsOfFile:path];
    
    NSMutableArray * arrayModels = [NSMutableArray array];
    for (NSDictionary * dic in arrayDict) {
        GroupModel * model = [[GroupModel alloc]initWithDictionary:dic error:nil];
        
        //NSLog(@"model--%@",model.cars);
        [arrayModels addObject:model];
    }
   
    if (success) {
        success(arrayModels.copy);
    }

}


@end



@implementation CarModel

@end

2017年10月11日18:41:14 更新

行内容中的代码优化:
参考:UITableView和UITableViewCell容易混淆的几个方法

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

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,019评论 4 62
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,464评论 25 707
  • 看过一则故事, 有一只觅食的狐狸, 顺着香味找到一片茂盛的葡萄架, 架上葡萄溜圆晶亮, 馋得狐狸垂涎欲滴。 于是狐...
    旖旎i阅读 286评论 0 4
  • 对于现在的00后来说,可能会叫不全所有人的名字。更可恶的是,张冠李戴到某个小鲜肉的头上。记得我小时候,看到梁朝伟很...
    最爱分享快乐阅读 391评论 0 0
  • 屠格涅夫(1818一1883)俄罗斯著名的现实主义作家,与列夫•托尔斯泰齐名。代表作有《猎人笔记》,《父与子》,《...
    泰山寒梅阅读 7,017评论 14 22