iOS 从UITableViewController中分离数据源

之前看objc.io #1 Light View Controllers看到一个很不错的技巧:从UITableViewController中分离数据源,这样可以减小UITableViewController的规模,同时也能让程序有一个比较好的架构。

由于UITableViewController是iOS中使用得最频繁的一个视图控制器,所以这里做下笔记,记录下这个技巧。

首先是故事板(当然也可以用代码 + XIB的组合):

新建一个Cell类,连接故事板中的Outlets,代码如下:

#import <UIKit/UIKit.h>

@interface Cell : UITableViewCell

- (void)configureForData:(NSString *)data;

@end
#import "Cell.h"

@interface Cell ()

@property (weak, nonatomic) IBOutlet UILabel *dataTitleLabel;

@property (weak, nonatomic) IBOutlet UIButton *dataDetailLabel;

@end

@implementation Cell

- (void)configureForData:(NSString *)data {
    self.dataTitleLabel.text = data;
    [self.dataDetailLabel setTitle:@"1" forState:UIControlStateNormal];
}

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        // Initialization code
    }
    return self;
}

- (void)awakeFromNib
{
    // Initialization code
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

@end

Cell类中的configureForData方法用于配置Cell中UI的内容。

回到TableViewController类,代码如下:

#import "TableViewController.h"
#import "DataSource.h"
#import "Cell.h"

@interface TableViewController ()

@property (strong, nonatomic) NSArray *array;
@property (strong, nonatomic) DataSource *dataSource;

@end

@implementation TableViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    self.array = @[@"1", @"2", @"3", @"1", @"2", @"3", @"1", @"2", @"3"];

    [self setupTableView];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

/* 设置表格的数据源,并registerNib */
- (void)setupTableView {

    TableViewCellConfigureBlock configureCell = ^(Cell *cell, NSString *str) {
        [cell configureForData:str];
    };
    self.dataSource = [[DataSource alloc] initWithItems:_array
                                                         cellIdentifier:@"Cell"
                                                     configureCellBlock:configureCell];
    self.tableView.dataSource = self.dataSource;
}

#pragma mark - UITableViewDelegate

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return 100.0;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    NSLog(@"%@", self.array[indexPath.row]);
}

@end

其中setupTableView方法将表格的UITableViewDataSource “外包”给TableDataSource类实现。

本类实现UITableViewDelegate,包括点击表格中的某一行的行为,cell的高度等。

最后看看承担表格数据源责任的TableViewDataSource类:

#import <Foundation/Foundation.h>

typedef void (^TableViewCellConfigureBlock)(id cell, id item);

@interface DataSource : NSObject <UITableViewDataSource>

- (id)initWithItems:(NSArray *)anItems
     cellIdentifier:(NSString *)aCellIdentifier
 configureCellBlock:(TableViewCellConfigureBlock)aConfigureCellBlock;

- (id)itemAtIndexPath:(NSIndexPath *)indexPath;

@end

首先该类必须遵守UITableViewDataSource委托,然后定义一个配置Cell的Block类型。

该类的实现代码如下:

#import "DataSource.h"

@interface DataSource ()

@property (nonatomic, strong) NSArray  *items;
@property (nonatomic, copy)   NSString *cellIdentifier;
@property (nonatomic, copy)   TableViewCellConfigureBlock configureCellBlock;

@end

@implementation DataSource

#pragma mark - Initialization

- (id)init {
    // 只能通过initWithItems:cellIdentifier:configureCellBlock:方法初始化
    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 copy];
    }

    return self;
}

- (id)itemAtIndexPath:(NSIndexPath *)indexPath {
    return self.items[(NSUInteger) indexPath.row];
}

#pragma mark UITableViewDataSource

/* Required methods */

- (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];

    /**
     之所以把configureCellBlock作为一个属性,是为了该类可以被复用
     只要TableViewController定制了对应的代码块并作为参数传入就可以了

     复用的关键:不要被具体的实现代码入侵,只需要调用接口和给出接口就可以了
     */
    self.configureCellBlock(cell, item);
    return cell;
}

@end

说下cellForRowAtIndexPath方法中的self.configureCellBlock(cell, item);

这句代码的作用无疑是配置Cell中的内容,一般由用户自定义的Cell类自行实现,这里没有牵涉任何实现细节,从而保证TableViewDataSource类可以很好地被复用。

运行结果:

顺便传了个Demo上来,有兴趣的可以下载看看。

参考资料:Lighter View Controllers

iOS 从UITableViewController中分离数据源,码迷,mamicode.com

时间: 2024-10-28 23:37:39

iOS 从UITableViewController中分离数据源的相关文章

iOS中UITableView数据源刷新了,但tableview当中的cell没有刷新

你会不会遇到通过断点查看数据源模型的确刷新了,但是tableview没有刷新的情况,我遇到了,并通过下面的方法解决了,供大家参考! 在tableview中的数据源代理方法 p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Menlo } span.s1 { } span.s2 { font: 11.0px Menlo; color: #703daa } - (UITableViewCell *)tableView:(UITableView

ios开发 UITableViewController

iOS中显示数据列表最常用的一个控件,支持垂直滚动 UITableView的两种内置样式UITableViewStylePlain UITableViewStyleGrouped 数据源(dataSource)和代理(delegate)l? UITableView需要一个数据源(dataSource)来显示数据 ,UITableView会向数据源查询一共有多少行数据以及每一行显 示什么数据等.没有设置数据源的UITableView只是个空壳.凡 是遵守UITableViewDataSource协

spring框架中多数据源创建加载并且实现动态切换的配置实例代码

原文:spring框架中多数据源创建加载并且实现动态切换的配置实例代码 源代码下载地址:http://www.zuidaima.com/share/1774074130205696.htm 在我们的项目中遇到这样一个问题:我们的项目需要连接多个数据库,而且不同的客户在每次访问中根据需要会去访问不同的数据库.我们以往在spring和hibernate框架中总是配置一个数据源,因而sessionFactory的dataSource属性总是指向这个数据源并且恒定不变,所有DAO在使用sessionFa

iOS UITableViewCell UITableVIewController 纯代码开发

iOS UITableViewCell UITableVIewController 纯代码开发 <原创> 1.纯代码 自定义UITableViewCell 直接上代码 ////// #import <UIKit/UIKit.h> @interface CodeTableViewCell : UITableViewCell @property (nonatomic, weak) UIImageView *iconView; @property (nonatomic, weak) UI

在iOS微信浏览器中自动播放HTML5 audio(音乐)的2种正确方式

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"

如何利用excel中的数据源制作数据地图

关于这个问题,制作数据地图的方法已不新奇,总体来说有这么几类方案: 一类方案:直接在excel里制作 优势:个人小数据量应用较为方便简单 缺点:需要熟悉VBA,且更强大的功能对VBA水平要求较高 1.绘制地图图形 + VBA宏语言 思路:用插入图形"任意多边形"绘制地图:每一个"任意多边形"赋予正确名称:对"任意多边形"赋值:利用VBA对"任意多边形"的值进行操作, 例如上色. 先准备一张所需要的地图图片,网上都有,可以下载

iOS 开发者旅途中的指南针 - LLDB 调试技术

文章转载于:iOS 开发者旅途中的指南针 - LLDB 调试技术 今天给大家介绍的内容,无关乎任何功能性开发技术,但又对开发的效率影响至深,这就是调试技术. 何为调试呢,比如我们用 print 函数在指定位置进行输出,来定位某些节点的变量内的取值: 12345 let result = parseJSON("[1,2,3]");print(result); result = parseJSON("error");print(result);4 相信我们大家看到类似这

iOS 在object-c 中调用c文件 方法

1,新建c 头文件  lib.h 定义 c 函数 2,新建 c 实现文件,新建模板选中 c File  lib.c 3,oc 中调用,引用 c 头文件 lib.h ok .搞定 iOS 在object-c 中调用c文件 方法,布布扣,bubuko.com

iOS Foundation 框架中 Mutable 的类们

太阳火神的美丽人生 (http://blog.csdn.net/opengl_es) 本文遵循"署名-非商业用途-保持一致"创作公用协议 转载请保留此句:太阳火神的美丽人生 -  本博客专注于 敏捷开发及移动和物联设备研究:iOS.Android.Html5.Arduino.pcDuino,否则,出自本博客的文章拒绝转载或再转载,谢谢合作. Mutable 对于那些不能直接对其中内容进行更改的类来说,是一种扩展方式,象数值这类的,不涉及到指针的,就没有 Mutable 子类,可能是因为