iOS控制器瘦身第二篇

MVC
在讨论解耦之前,我们要弄明白 MVC 的核心:控制器(以下简称 C)负责模型(以下简称 M)和视图(以下简称 V)的交互。

这里所说的 M,通常不是一个单独的类,很多情况下它是由多个类构成的一个层。最上层的通常是以 Model结尾的类,它直接被 C 持有。Model类还可以持有两个对象:

Item:它是实际存储数据的对象。它可以理解为一个字典,和 V 中的属性一一对应
Cache:它可以缓存自己的 Item(如果有很多)
常见的误区:

一般情况下数据的处理会放在 M 而不是 C(C 只做不能复用的事)
解耦不只是把一段代码拿到外面去。而是关注是否能合并重复代码, 并且有良好的拖展性。
原始版
在 C 中,我们创建 UITableView对象,然后将它的数据源和代理设置为自己。也就是自己管理着 UI 逻辑和数据存取的逻辑。在这种架构下,主要存在这些问题:

违背 MVC 模式,现在是 V 持有 C 和 M。
C 管理了全部逻辑,耦合太严重。
其实绝大多数 UI 相关都是由 Cell 而不是 UITableView自身完成的。
为了解决这些问题,我们首先弄明白,数据源和代理分别做了那些事。

数据源
它有两个必须实现的代理方法:

  • (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;
  • (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
    简单来说,只要实现了这个两个方法,一个简单的 UITableView对象就算是完成了。

除此以外,它还负责管理 section的数量,标题,某一个 cell的编辑和移动等。

代理
代理主要涉及以下几个方面的内容:

cell、headerView 等展示前、后的回调。
cell、headerView 等的高度,点击事件。
最常用的也是两个方法:

  • (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
  • (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
    提醒:绝大多数代理方法都有一个 indexPath参数

所以我们的目的就出来了
1、进行解耦

2、给c专业瘦身

做法:对数据源和代理都进行可复用的封装
1、dataSource的封装

.h文件中

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
 
NS_ASSUME_NONNULL_BEGIN
 
typedef void (^TableViewCellConfigureBlock)(id cell, id items, NSIndexPath * indexPath);
 
@interface GMTableViewProtocol : NSObject<UITableViewDataSource,UICollectionViewDataSource>
 
- (id)initWithItems:(NSArray *)anItems
     cellIdentifier:(NSString *)aCellIdentifier
 configureCellBlock:(TableViewCellConfigureBlock)aConfigureCellBlock;
 
- (id)itemAtIndexPath:(NSIndexPath *)indexPath;
 
@end

.m文件中

#import "GMTableViewProtocol.h"
 
@interface GMTableViewProtocol ()
 
@property(nonatomic, strong) NSArray* items;/**< array */
@property(nonatomic, copy) NSString* cellIdentifier;/**< cellIdentifier */
@property(nonatomic, copy) TableViewCellConfigureBlock configureCellBlock;/**< block */
 
@end
 
@implementation GMTableViewProtocol
 
- (instancetype)init {
    return  nil;
}
 
- (id)initWithItems:(NSArray *)anItems cellIdentifier:(NSString *)aCellIdentifier configureCellBlock:(TableViewCellConfigureBlock)aConfigureCellBlock {
    
    self = [super init];
    if (self) {
        self.items = anItems;
        self.cellIdentifier = aCellIdentifier;
        self.configureCellBlock = aConfigureCellBlock;
    }
    return  self;
}
 
- (id)itemAtIndexPath:(NSIndexPath *)indexPath {
    
    if ([self isDoubleDimensionalArray]) {
        NSArray *sectionArr = self.items[indexPath.section];
        return sectionArr.count > indexPath.row ? sectionArr[(NSUInteger) indexPath.row] : 0;
    }else{
        return self.items.count > indexPath.section ? self.items[(NSUInteger) indexPath.section] : 0;
    }
}
 
#pragma mark - UITableViewDataSource
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return self.items.count > 0 ? self.items.count : 0;
}
 
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    if ([self isDoubleDimensionalArray]) {
        NSArray *sectionArr = self.items[section];
        return sectionArr.count;
    }else{
        return 1;
    }
}
 
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:self.cellIdentifier];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    id item = [self itemAtIndexPath:indexPath];
    self.configureCellBlock(cell, item, indexPath);
    return cell;
}
 
///判断数组是否为二维数组
- (BOOL)isDoubleDimensionalArray
{
    if (self.items.count == 0) return NO;
    if ([self.items.firstObject isKindOfClass:[NSArray class]]) {
        return YES;
    }else{
        return NO;
    }
}
 
@end
2、delegate的封装

.h文件中

#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
typedef void(^GMTableViewDidSelectBlock)(UITableView *GMTableView, NSIndexPath *GMIndexPath);
 
@interface GMTableViewDelegate : NSObject<UITableViewDelegate>
 
- (id)initWithHeaderV_section:(UIView *_Nullable)headerV footerV_section:(UIView *_Nullable)footerV rowHeight:(CGFloat)rowH headerH_section:(CGFloat)headerH footerH_section:(CGFloat)footerH didSelectBlock:(GMTableViewDidSelectBlock)didSelectBlock;
 
@end
.m文件中

#import "GMTableViewDelegate.h"
 
@interface GMTableViewDelegate ()
 
@property (nonatomic, strong)UIView *headerV_section;
 
@property (nonatomic, strong)UIView *footerV_section;
 
@property (nonatomic, assign)CGFloat rowHeight;
 
@property (nonatomic, assign)CGFloat headerH_section;
 
@property (nonatomic, assign)CGFloat footerH_section;
 
@property (nonatomic, copy)GMTableViewDidSelectBlock didSelectBlock;
 
@end
 
@implementation GMTableViewDelegate
 
- (instancetype)init
{
    return nil;
}
 
- (id)initWithHeaderV_section:(UIView *)headerV footerV_section:(UIView *)footerV rowHeight:(CGFloat)rowH headerH_section:(CGFloat)headerH footerH_section:(CGFloat)footerH didSelectBlock:(GMTableViewDidSelectBlock)didSelectBlock
{
    self = [super init];
    if (self) {
        self.headerH_section = headerH;
        self.headerV_section = headerV;
        self.footerH_section = footerH;
        self.footerV_section = footerV;
        self.rowHeight       = rowH;
        self.didSelectBlock  = didSelectBlock;
    }
    return self;
}
 
#pragma mark - <delegate>
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return self.rowHeight;
}
 
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    return self.headerH_section;
}
 
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
    return self.footerH_section;
}
 
- (nullable UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    UIView *headerV = [[UIView alloc]init];
    if (self.headerV_section) {
        self.headerV_section.frame = CGRectMake(0, 0, self.headerV_section.width, self.headerV_section.height);
        headerV.size = CGSizeMake(self.headerV_section.width, self.headerV_section.height);
        headerV.backgroundColor = [UIColor whiteColor];
        [headerV addSubview:self.headerV_section];
    }
    return headerV;
}
 
- (nullable UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
    UIView *footerV = [[UIView alloc]init];
    if (self.footerV_section) {
        footerV = [self XC_copyAView:self.footerV_section];
    }
    return footerV;
}
 
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    self.didSelectBlock(tableView, indexPath);
}
 
 
///深复制UIView
- (UIView *)XC_copyAView:(UIView *)view
{
    NSData *tempArchive = [NSKeyedArchiver archivedDataWithRootObject:view];
    return [NSKeyedUnarchiver unarchiveObjectWithData:tempArchive];
}
 
@end

如何使用:

   TableViewCellConfigureBlock configureBlock = ^(GMActivityCenterTableViewCell *cell, NSString *img) {
       [cell setCellImg:img];
   };
   self.dataSource = [[GMTableViewProtocol alloc]initWithItems:@[@"activityCenter_luckyDraw",@"activityCenter_popuparize",@"activityCenter_stockGod"] cellIdentifier:cellID configureCellBlock:configureBlock];
   self.activityTableV.dataSource = self.dataSource;
   //
   GMTableViewDidSelectBlock didSelectBlock = ^(UITableView *GMTableView, NSIndexPath *GMIndexPath){
       [SVProgressHUD showInfoWithStatus:[NSString stringWithFormat:@"click %ld",(long)GMIndexPath.section]];
   };
   UIView *footerV = [[UIView alloc]init];
   footerV.backgroundColor = [UIColor whiteColor];
   footerV.size = CGSizeMake(SCREEN_WIDTH, 16*kScreenProportionY);
   CGFloat rowH = (SCREEN_WIDTH - 32)/343*100;
   self.delegate = [[GMTableViewDelegate alloc]initWithHeaderV_section:nil footerV_section:footerV rowHeight:rowH headerH_section:CGFLOAT_MIN footerH_section:16*kScreenProportionY didSelectBlock:didSelectBlock];
   self.activityTableV.delegate = self.delegate;

完结,这样就可以很大程度上的减少controller上的代码量,UICollectionView也是一样的类比过去就OK

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

推荐阅读更多精彩内容