减少比例= (360(原来的行数)-159(瘦身后的行数))/360 = 56%

父类 MVC 和MVVM 前后基本不动

父类主要完成如下三个功能:

  • 1)功能:MJRefrsh +上拉下拉没有更多数据,封装到父类的控制器 子类调用3行代码增加所有刷新功能
  • 2)网络失败:显示网络错误的链接,写在父类子类调用一行代码就可
  • 3)加载数据完成,列表中没有数据提示View,比如购买界面,没有购 买记录,写在父类子类一行代码调用

瘦身思路(总的代码量增加了30多行,但是控制器更清爽了)

  • 网络前网络请求函数是这样的

瘦身结果

瘦身具体实现

1)网络请求移到ViewModel

以前网络代码直接写在控制器中,如下所示
 
 
 
 
 

Objective-C

 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
- (void)loadDataForCaseDeatailMsg:(NSString*)caseManageId{
    NSMutableDictionary *dict = createMutDict;
    [dict setObject:@"case-info" forKey:@"method"];
    [dict setObject:caseManageId forKey:@"caseManageId"];
    [QTFHttpTool    requestPara:dict
                        needHud:YES
                        hudView:self.view
                 loadingHudText:nil
                   errorHudText:nil
                         sucess:^(NSDictionary *json) {
                             BOOL success = (BOOL)[json[@"success"] boolValue];
                             if(success){
                                 QTCaseDetailModel *caseDetailModel = [[QTCaseDetailModel alloc]init];
                                 caseDetailModel.expertId = json[@"expertId"];
                                 caseDetailModel.userName = json[@"userName"];
                                 caseDetailModel.data = [QTCaseDetailMsgModel objectArrayWithKeyValuesArray:json[@"data"]];
                                 [self gotoChatViewController:caseDetailModel];
 
                             }
                         }failur:^(NSError *error) {
 
                         }];
}
  • MVVM封装后控制器中的网络请求是这样的,控制器只取需要的东西,如下所示,不关心一些无关的细节,细节移到ViewModel中,5行搞定了网络请求获取网络数据,还算精简吧!
 
 
 
 
 

Objective-C

 
1
2
3
4
5
- (void)loadDataForCaseDeatailMsg:(NSString*)caseManageId{
    [QTCaseDetailViewModel caseDetailhudView:self.view caseManageId:caseManageId getDataSuccess:^(id item, NSInteger totalPage) {
        [self gotoChatViewController:item];
    } getDataFailure:^(NSError *error) {}];
}

— 具体实现在viewModle中,viewModel添加hud,完成字典转模型,对后台做错误处理,显示错误(部分工作在我自己封装的底层网络请求实现的)

 
 
 
 
 

Objective-C

 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
+ (void)caseDetailhudView:(UIView*)hudView caseManageId:(NSString*)caseManageId getDataSuccess:(GetDataAllSuccessBlock)success getDataFailure:(GetDataFailureBlock)failure{
    NSMutableDictionary *dict = createMutDict;
    [dict setObject:@"case-info" forKey:@"method"];
    [dict setObject:caseManageId forKey:@"caseManageId"];
    [QTFHttpTool    requestPara:dict
                        needHud:YES
                        hudView:hudView
                 loadingHudText:nil
                   errorHudText:nil
                         sucess:^(NSDictionary *json) {
                             BOOL success1 = (BOOL)[json[@"success"] boolValue];
                             if(success1){
                                 QTCaseDetailModel *caseDetailModel = [[QTCaseDetailModel alloc]init];
                                 caseDetailModel.expertId = json[@"expertId"];
                                 caseDetailModel.userName = json[@"userName"];
                                 caseDetailModel.data = [QTCaseDetailMsgModel objectArrayWithKeyValuesArray:json[@"data"]];
                                 success(caseDetailModel,1);
                             }
                         }failur:^(NSError *error) {
 
                         }];
 
}
  • 将网络请求部分工作移到Viewmodel中,本控制器有三个网络请求 这样节省代码量很可观

2) datasource,以前直接写在控制机器中,现在写到dataSource 文件中,控制器中调用dataSource这个类

 
 
 
 
 

Objective-C

 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
本类作用:用以处理TableView以及CollectionView的数据源
*/
 
#import
@import UIKit;
 
// 用于配置当前Cell的数据
// id cell表示什么类型的Cell
// id item表示什么类型的模型对象
typedef void (^TableViewCellConfigureBlock)(id cell, id item);
 
@interface QTArrayDataSource : NSObject
 
// 参数1:用以数据源的控制,主要是通过改数组来控制当前tableView或者collectionView显示Cell的数量
// 参数2:当前需要显示的cell的重用标示
// 参数3:用以配置当前cell数据的block
- (id)initWithItems:(NSArray *)anItems
     cellIdentifier:(NSString *)aCellIdentifier
configureCellBlock:(TableViewCellConfigureBlock)aConfigureCellBlock;
 
// 通过indexPath来获取当前具体的某一个对象
- (id)itemAtIndexPath:(NSIndexPath *)indexPath;
 
@end
 
 
 
 
 

Objective-C

 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#import "QTArrayDataSource.h"
#import "QTSpecialCaseCell.h"
 
@interface QTArrayDataSource ()
 
// 当前数据数组
@property (nonatomic, strong) NSArray *items;
// 当前cell重用标示
@property (nonatomic, copy) NSString *cellIdentifier;
// 当前配置cell的block
@property (nonatomic, copy) TableViewCellConfigureBlock configureCellBlock;
 
@end
 
 
@implementation QTArrayDataSource
 
- (id)init
{
    return nil;
}
 
- (id)initWithItems:(NSArray *)anItems
     cellIdentifier:(NSString *)aCellIdentifier
configureCellBlock:(TableViewCellConfigureBlock)aConfigureCellBlock
{
    self = [super init];
    if (self) {
        _items = anItems;
        _cellIdentifier = aCellIdentifier;
        _configureCellBlock = [aConfigureCellBlock copy];
    }
    return self;
}
 
- (id)itemAtIndexPath:(NSIndexPath *)indexPath
{
    return self.items[(NSUInteger)indexPath.row];
}
 
 
#pragma mark UITableViewDataSource
 
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return self.items.count;
}
 
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:self.cellIdentifier
                                                            forIndexPath:indexPath];
    // 获取当前某一行的对象
    id item = [self itemAtIndexPath:indexPath];
    // 通过调用该block配置当前cell显示的内容
    self.configureCellBlock(cell, item);
    return cell;
}
 
 
#pragma mark UICollectionDataSource
 
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
    return self.items.count;
}
 
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    QTSpecialCaseCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:self.cellIdentifier
                                                                           forIndexPath:indexPath];
 
    // 获取当前某一行的对象
 
    id item = [self itemAtIndexPath:indexPath];
    // 通过调用该block配置当前cell显示的内容
    self.configureCellBlock(cell, item);
    return cell;
}
 
 
 
@end

3) viewdidload代码中, 以协议的方式加载数据源

 
 
 
 
 

Objective-C

 
1
2
3
4
5
6
7
8
9
10
11
12
TableViewCellConfigureBlock configureCell = ^(QTSpecialCaseCell
                                            *cell, id data) {
        [cell configureForCell:data];
    };
    [_collectionView registerClass:[QTSpecialCaseCell class] forCellWithReuseIdentifier:CellIdentify];
    self.arrayDataSource = [[QTArrayDataSource alloc]
                            initWithItems:self.data
                            cellIdentifier:CellIdentify
                            configureCellBlock:configureCell];
    self.collectionView.dataSource = self.arrayDataSource;
    self.collectionView.delegate = self;
    [self refreshOneCreateCollectionView:_collectionView methodSelStr:@"loadData"];

4) 本文的待讨论的部分

  • 代理方法没有剥离出来,如果剥离出来,控制器进一步减少到120行左右,代理剥离有点麻烦,感觉没有必要
  • 创建collectionView 的代码没剥离,剥离出来可以再减少20行左右,也参考一些别人的文章,目前觉得就这样了,没必要的
  • 也参考了一些别人的代码原文链接
    如何正确的写好一个UITableView,写的也很高大上,感觉各种继承,真的很复杂耶
 
  • 代码 不能过度封装,也不能不封装

有人对我的网络请求比较感兴趣,我的网络请求,针对公司的后台数据结构做了封装,hud 也封装到网络请求中了

使用MVVM减少控制器代码实战(减少56%)的更多相关文章

  1. Effective前端5:减少前端代码耦合

    什么是代码耦合?代码耦合的表现是改了一点毛发而牵动了全身,或者是想要改点东西,需要在一堆代码里面找半天.由于前端需要组织js/css/html,耦合的问题可能会更加明显,下面按照耦合的情况分别说明: ...

  2. 减少C++代码编译时间的方法

    c++ 的代码包含头文件和实现文件两部分, 头文件一般是提供给别人(也叫客户)使用的, 但是一旦头文件发生改变,不管多小的变化,所有引用他的文件就必须重新编译,编译就要花时间,假如你做的工程比较大(比 ...

  3. 让你的代码量减少3倍!使用kotlin开发Android(二) --秘笈!扩展函数

    本文承接上一篇文章:让你的代码量减少3倍!使用kotlin开发Android(一) 创建Kotlin工程 本文同步自博主的私人博客wing的地方酒馆 上一节说到,kotlin可以省去getter,se ...

  4. 让你的代码量减少3倍!使用kotlin开发Android(一)

    让你的代码量减少3倍!使用kotlin开发Android(一) 创建Kotlin工程 本文同步自博主的私人博客:wing的地方酒馆 写在前面 使用kotlin开发android已经两周多了.得到的好处 ...

  5. 相比xib 使用代码编排view 的一个明显的好处就是可以更好地重复使用已有代码,减少代码冗余。

    相比xib 使用代码编排view 的一个明显的好处就是可以更好地重复使用已有代码,减少代码冗余.

  6. 基于antd封装一个高可用form组件 减少cv代码导致的bug

    引言 在开发中台过程中 我们的原型中有很多表单,antd有表单组件,但是粒度比较细,就单纯组件而言,无可厚非,但是在开发过程中,可能会造成代码不够聚合,有些表单公共逻辑无法提取,copy paste比 ...

  7. x-杂项-maven-repository-lombok-intro:使用PROJECT LOMBOK减少BOILERPLATE代码

    ylbtech-杂项-maven-repository-lombok-intro:使用PROJECT LOMBOK减少BOILERPLATE代码 1.返回顶部 1. REDUCING BOILERPL ...

  8. Java秒杀系统实战系列~商品秒杀代码实战

    摘要: 本篇博文是“Java秒杀系统实战系列文章”的第六篇,本篇博文我们将进入整个秒杀系统核心功能模块的代码开发,即“商品秒杀”功能模块的代码实战. 内容: “商品秒杀”功能模块是建立在“商品详情”功 ...

  9. (万字好文)Dubbo服务熔断与降级的深入讲解&代码实战

    原文链接:(万字好文)Dubbo服务熔断与降级的深入讲解&代码实战 一.Dubbo服务降级实战 1 mock 机制 谈到服务降级,Dubbo 本身就提供了服务降级的机制:而 Dubbo 的服务 ...

随机推荐

  1. JS学习五(js中的事件)

    [JS中的事件分类] 1.鼠标事件 click/bdlclick/onmouseover/onmouseout 2. HTML事件 onload/onscroll/onsubmit/onchange/ ...

  2. [转载] java中静态代码块的用法 static用法详解

    一.java 静态代码块 静态方法区别 一般情况下,如果有些代码必须在项目启动的时候就执行的时候,需要使用静态代码块,这种代码是主动执行的;需要在项目启动的时候就初始化,在不创建对象的情况下,其他程序 ...

  3. Java第七周学习总结

    1. 本周学习总结 以你喜欢的方式(思维导图或其他)归纳总结集合相关内容. 参考资料: XMind 2. 书面作业 ArrayList代码分析 1.1 解释ArrayList的contains源代码 ...

  4. 201521123103 《Java程序设计》第三周学习总结

    一.本周学习总结 二.书面作业 1.代码阅读 public class Test1 { private int i = 1;//这行不能修改 private static int j = 2; pub ...

  5. 如何选择适合的前端UI框架

    根据近几年前端框架的热门,在前端开发框架不断更新与交换的时代,每一年都有黑马出现,是否适合自己开发的项目就不得而知了,只有认真的了解之后才能知道,这里主要给大家说一下如何选择适合旅游的前端UI框架?相 ...

  6. 归纳一下input中span提示以及input中onchange事件

    一.当input中不含有onclick事件的时候 定义一个class为tip1的span: <td><input  type=text name='POSTNAME' nameVal ...

  7. 为bookStore添加权限【动态代理和注解】

    前言 目前为止,我们已经学习了动态代理技术和注解技术了.于是我们想要为之前的bookStore项目添加权限控制-.. 只有用户有权限的时候,后台管理才可以进行相对应的操作-.. 实现思路 之前我们做权 ...

  8. DOM【介绍、HTML中的DOM、XML中的DOM】

    什么是DOM? DOM(Document Object Model)文档对象模型,是语言和平台的中立接口. 允许程序和脚本动态地访问和更新文档的内容. 为什么要使用DOM? Dom技术使得用户页面可以 ...

  9. Java Sftp上传下载文件

    需要使用jar包  jsch-0.1.50.jar sftp上传下载实现类 package com.bstek.transit.sftp; import java.io.File; import ja ...

  10. Python学习笔记007_图形用户界面[EasyGui][Tkinter]

    EasyGui官网:http://easygui.sourceforge.net/ EasyGui最新版:easygui-0.97.rar 小甲鱼根据官网文档翻译之后的中文文档地址: http://b ...