请支持原创, 如需转载, 请注明出处@TEASON
之前的文章里我有说要写关于UITableView见解的两篇, 算是展开讨论吧, 这是第一篇, 第二篇下集链接在此.
说在前面:
最近有个MVVM
模式非常火热, 相信它的出现是为了模块化iOS开发, 其实在我看来,它始终还是MVC
模式, 只是一个变种罢了 .(当然有人用到了响应式编程的思路颠覆了常规 , 但我们今天把讨论点集中于代码的设计模式) .
与其专注于说明 MVVM 的来历,不如让我们看一个典型的 iOS 是如何构建的,并从那里了解MVVM
:
当然, 关于瘦身ViewController
有很多方面 . 然而今天我们讲讲从Controller
中分离TableView的表示逻辑 . 为什么引言MVVM设计模式, 也是阐述这个主要思想是相通的 . 就是把"逻辑部分"尽量移到Model
层, 你可以认为它是一个中间层 , 所谓"逻辑部分"可以是各种delegate,网络请求,缓存,数据库,coredata等等等等 , 而controller正是用来组织串联他们 .使得整个程序走通 .
正文
我们很容易想到把 UITableViewDataSource
和UITableViewDelegate
的代码提取出来放到一个单独的类.
但我发现还是有东西可以抽象出来 .
例如cell
的生成, cell
行高, 点击等等 .这里我还用了block的形式使得函数能够回调 . 如果你对block还不太了解先看这里 .
此外, 如果你也重度使用.xib
生成Cell
, 那和我封装的类会非常契合 .
记住我默认习惯用.xib
前的文件名来定义cell的Identifier. 如果你想把它用于实战, 记得在xib设置cell的Identifier不要设错.
处理类XTTableDataDelegate
的.h
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
typedef void (^TableViewCellConfigureBlock)(NSIndexPath *indexPath, id item, XTRootCustomCell *cell) ;
typedef CGFloat (^CellHeightBlock)(NSIndexPath *indexPath, id item) ;
typedef void (^DidSelectCellBlock)(NSIndexPath *indexPath, id item) ;
@interface XTTableDataDelegate : NSObject <UITableViewDelegate,UITableViewDataSource>
//1
- (id)initWithItems:(NSArray *)anItems
cellIdentifier:(NSString *)aCellIdentifier
configureCellBlock:(TableViewCellConfigureBlock)aConfigureCellBlock
cellHeightBlock:(CellHeightBlock)aHeightBlock
didSelectBlock:(DidSelectCellBlock)didselectBlock ;
//2
- (void)handleTableViewDatasourceAndDelegate:(UITableView *)table ;
//3
- (id)itemAtIndexPath:(NSIndexPath *)indexPath ;
@end
注释: //1. 初始化方法: 传数据源, cellIdentifier, 三个block分别对应配置, 行高, 点击 .
//2. 将UITableViewDataSource
和UITableViewDelegate
设于XTTableDataDelegate
//3. 默认indexPath.row
对应每个dataSource
.相应返回item
此外, 为了更彻底, 有必要抽象出"根Cell
" .但这样不利于扩展cell
. 为了避开model
和view
的耦合. 所以使用category来做类的扩展 .
#import <UIKit/UIKit.h>
@interface UITableViewCell (Extension)
+ (void)registerTable:(UITableView *)table
nibIdentifier:(NSString *)identifier ;
- (void)configure:(UITableViewCell *)cell
customObj:(id)obj
indexPath:(NSIndexPath *)indexPath ;
+ (CGFloat)getCellHeightWithCustomObj:(id)obj
indexPath:(NSIndexPath *)indexPath ;
@end```
故`UITableViewCell+Extension`, 通过类的扩展来实现新Cell .
注释: //1 .不解释.
//2. 根据数据源配置并绘制cell 子类务必重写该方法
//3. 根据数据源计算cell的高度 子类可重写该方法, 若不写为默认值44.0
pragma mark - Public
- (void)registerTable:(UITableView *)table
nibIdentifier:(NSString *)identifier
{
[table registerNib:[self nibWithIdentifier:identifier] forCellReuseIdentifier:identifier] ;
}
pragma mark --
pragma mark - Rewrite these func in SubClass !
- (void)configure:(UITableViewCell *)cell
customObj:(id)obj
indexPath:(NSIndexPath *)indexPath
{
// Rewrite this func in SubClass !
}
- (CGFloat)getCellHeightWithCustomObj:(id)obj
indexPath:(NSIndexPath *)indexPath
{
// Rewrite this func in SubClass if necessary
if (!obj) {
return 0.0f ; // if obj is null .
}
return 44.0f ; // default cell height
}
那么新cell类的实现如下: 实现两个新方法
- (void)configure:(UITableViewCell *)cell
customObj:(id)obj
indexPath:(NSIndexPath *)indexPath
{
MyObj *myObj = (MyObj *)obj ;
MyCell *mycell = (MyCell *)cell ;
mycell.lbTitle.text = myObj.name ;
mycell.lbHeight.text = [NSString stringWithFormat:@"my Height is : %@", @(myObj.height)] ;
cell.backgroundColor = indexPath.row % 2 ? [UIColor greenColor] : [UIColor brownColor] ;
}
- (CGFloat)getCellHeightWithCustomObj:(id)obj
indexPath:(NSIndexPath *)indexPath
{
return ((MyObj *)obj).height ;
}
看下结果, 瘦身后的`controller`干净的不像实力派, 只剩下了这一个方法 .呵呵呵呵 .
-
(void)setupTableView
{
self.table.separatorStyle = 0 ;TableViewCellConfigureBlock configureCell = ^(NSIndexPath *indexPath, MyObj *obj, XTRootCustomCell *cell) {
[cell configure:cell customObj:obj indexPath:indexPath] ;
} ;CellHeightBlock heightBlock = ^CGFloat(NSIndexPath *indexPath, id item) {
return [MyCell getCellHeightWithCustomObj:item indexPath:indexPath] ;
} ;DidSelectCellBlock selectedBlock = ^(NSIndexPath *indexPath, id item) {
NSLog(@"click row : %@",@(indexPath.row)) ;
} ;self.tableHander = [[XTTableDataDelegate alloc] initWithItems:self.list
cellIdentifier:MyCellIdentifier
configureCellBlock:configureCell
cellHeightBlock:heightBlock
didSelectBlock:selectedBlock] ;[self.tableHander handleTableViewDatasourceAndDelegate:self.table] ;
}
诸多`.m`文件太过于冗长,我就不贴到博客了, 博客主要是讲思路, 思路是王道 .
当然如果你想深入理解, 可以看源代码, 我传到了`github`, [点我下载](https://github.com/Akateason/XTTableDatasourceDelegateSeparation) , 喜欢的话去那加个⭐️, 对开源者是莫大的鼓励 .
任何疑问或建议, 欢迎, 我会看你们的留言 .
>
[介绍MVVM](http://www.objc.io/issue-13/mvvm.html)
[Lighter View Controllers](http://www.objc.io/issue-1/lighter-view-controllers.html)
[Table View Programming Guide](http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/tableview_iphone/AboutTableViewsiPhone/AboutTableViewsiPhone.html)
[Cocoa Core Competencies: Controller Object](http://developer.apple.com/library/mac/#documentation/General/Conceptual/DevPedia-CocoaCore/ControllerObject.html)
网友评论
您工作中常用Xib吗?
本篇博客主要是为了给VC瘦身吧? 将Tableview的一些代理方法中VC中抽离出来。 我觉得完全可以将Tableview绑定到已有的viewmodel中,并不用新建一个类,而且VC中的代码也是少了许多。
推荐下,分库分表中间件 Sharding-JDBC 源码解析 17 篇:http://t.cn/R0UfGFT
榄
1. 如何增强XTTableDataDelegate的通用性,比如:
1.1 支持分组 以及 sectionHeaderView
1.2 一个tableView里有多种样式的cell
2. 涉及到下拉刷新,会出现一些小Bug...最近正在搞这两个问题...不知道楼楼是怎么解决的...
这两个方法写在类中,就让Model和View绑定在一起了,我们的做法是写在Category里,比较灵活,可以提供多个configure方法,针对不同类型的Model进行数据展示,同时也增强Cell的移植性。