利用block为控制器减负以及block和delegate的正确选择

前言:
减负前,控制器是代理,来负责显示cell。
减负后,Relief类是代理,来负责显示cell。
优点:减轻了控制器的工作负担。


例1

控制器减负前:

ViewController.m文件

#import "ViewController.h"

@interface ViewController ()<UITableViewDataSource,UITableViewDelegate>
@property (nonatomic, strong) NSArray   *DataSoure;
@end

@implementation ViewController
// 懒加载
-(NSArray *)DataSoure{
    if (_DataSoure == nil) {
        _DataSoure = [NSArray arrayWithObjects:@"a",@"b",@"c",@"d",@"e",nil];
    }
    return _DataSoure;
}

- (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor redColor];

    // 纯代码创建TableView
    UITableView *tableView = [[UITableView alloc] init];
    // 必须设置frame,否则TableView不显示
    tableView.frame = CGRectMake(80, 100, 200, 300);
    // 给TableView一个显示的载体
    [self.view addSubview:tableView];
    
    tableView.dataSource =self;// 核心
    tableView.delegate = self;// 核心

}
#pragma mark - UITableViewDataSource

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return self.DataSoure.count;
    
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *ID = @"cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];
    }
    
    cell.textLabel.text = [NSString stringWithFormat:@"第%ld个cell",indexPath.row];
    return cell;
}

#pragma mark - UITableViewDelegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    [tableView deselectRowAtIndexPath:indexPath animated:NO];
     NSLog(@"点击了%ld个cell",indexPath.row);
}

@end

截图:


31-22.gif

UITableView将一个UIViewController设置为它的代理。UITableView在绘制表的时候并不知道要绘制几个section和几个row。这个时候他就会向它的代理询问这些信息。这个时候在controller中的代理方法就会被执行。告诉UITableView去怎样的绘制。在绘制每个CELL的时候,UITableView也不知道应该怎样去绘制,这个时候它会去询问他的代理。代理方法再告诉它去绘制一个怎样的cell。也就是说代理方法是在View需要一些信息的时候在它的delegate中被执行的,这样主要是为了MVC的设计结构。


控制器减负后:

ViewController.m文件
#import "ViewController.h"
#import "Relief.h"
@interface ViewController ()
// 在匿名类中利用强指针来保住relief的命 目的:防止relief被释放,从而无法进入Relief类设置数据并显示。
@property(nonatomic,strong) Relief *relief;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor redColor];
    // 让数组中对象的个数成为数据源,所以数组中具体是啥内容并不重要.
    NSArray *array = [NSArray arrayWithObjects:@"a",@"b",@"c",@"d",@"e",nil];
    // 调用方法,并初始化方法中的block
    _relief = [Relief CreateTableViewWithDataSoure:array SelectBlock:^(NSIndexPath *indexPath) {
        NSLog(@"点击了%ld个cell",indexPath.row);
    }];
    
    // 纯代码创建TableView
    UITableView *tableView = [[UITableView alloc] init];
    // 必须设置frame,否则TableView不显示
    tableView.frame = CGRectMake(80, 100, 200, 300);
    // 给TableView一个显示的载体
    [self.view addSubview:tableView];

    // 让Relief类的对象成为tableView的数据源和代理,那么底层就会跳转至Relief类执行代理方法和数据源方法,不会在当前控制器执行,从而把业务分担了出去,减轻了控制器的负担。
    tableView.dataSource = _relief;// 核心
    tableView.delegate = _relief;// 核心
}
@end

Relief.h文件
// 一定要用UIKit框架,不要用Foundation框架,否则会提示UITableView的两个协议名找不到
#import <UIKit/UIKit.h>

typedef void (^SelectCellBlock)(NSIndexPath *indexPath);
@interface Relief : NSObject<UITableViewDelegate,UITableViewDataSource>

+(instancetype)CreateTableViewWithDataSoure:(NSArray *)DataSoure
SelectBlock:(SelectCellBlock)selectBlock;
@end
Relief.m文件
#import "Relief.h"
@interface Relief()
@property (nonatomic, strong) NSArray   *DataSoure;
@property (nonatomic, copy)   SelectCellBlock selectBlock;
@end

@implementation Relief

+ (instancetype)CreateTableViewWithDataSoure:(NSArray *)DataSoure
                                        SelectBlock:(SelectCellBlock)select {
    // 创建tableView并携带数据源和block  唱歌带着你和我
    // CreateTableViewWithDataSourcea
    return [[[self class] alloc] initCreateTableViewWithDataSoure:DataSoure
                                                       SelectBlock:select];
}

// 方法名必须以init开头.因为给方法中的self赋值的前提条件是:self必须在init开头的方法中,否则报错。
- (instancetype)initCreateTableViewWithDataSoure:(NSArray *)DataSoure SelectBlock:(SelectCellBlock)select {
    self = [super init];
    if (self) {
        self.DataSoure = DataSoure;
        self.selectBlock = select;
    }
    return self;
}

#pragma mark - UITableViewDataSource

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return self.DataSoure.count;
    
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *ID = @"cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];
    }
    
    cell.textLabel.text = [NSString stringWithFormat:@"第%ld个cell",indexPath.row];
    return cell;
}

#pragma mark - UITableViewDelegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    [tableView deselectRowAtIndexPath:indexPath animated:NO];
    // 点击cell,就调用block
    self.selectBlock(indexPath);
}
@end

截图:

31-23.gif

例2

控制器减负前

Time.h文件
#import <Foundation/Foundation.h>

@protocol AlertViewDelegate<NSObject>
- (void)AlertView:(NSString *)body;
@end

@interface Time : NSObject

@property (nonatomic, weak) id delegate;

- (void) Action;

@end
Time.m文件
#import "Time.h"

@implementation Time

- (void) Action{
[self.delegate AlertView:@"this is title"];//判断代理有没有实现代理方法
}
@end
ViewController.m文件
#import "ViewController.h"
#import "Time.h"
@interface ViewController ()<AlertViewDelegate>

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
  
    Time *timer = [[Time alloc] init];
     timer.delegate = self;
    [timer Action];
}

- (void)AlertView:(NSString *)body
{
    UIAlertView *alert=[[UIAlertView alloc] initWithTitle:body message:@"时间到" delegate:self cancelButtonTitle:nil otherButtonTitles:@"确定",nil];

    alert.alertViewStyle=UIAlertViewStyleDefault;
    [alert show];
}
@end

截图

100.95.gif

控制器减负后

Time.h文件
#import <Foundation/Foundation.h>

@interface Time : NSObject

typedef void (^UIAlertViewBlock)(NSString *body);
@property (nonatomic, copy) UIAlertViewBlock AlertViewBlock;

- (void) Action;

@end
Time.m文件
#import "Time.h"

@implementation Time

- (void) Action
{

    if (self.AlertViewBlock)
    {
        self.AlertViewBlock(@"该起床了");
    }
}
@end
ViewController.m文件
#import "ViewController.h"
#import "Time.h"
@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
  
    Time *timer = [[Time alloc] init];
    //实现block
    timer.AlertViewBlock = ^(NSString *body){
        UIAlertView *alert=[[UIAlertView alloc] initWithTitle:title message:@"定时到了" delegate:self cancelButtonTitle:nil otherButtonTitles:@"关闭",nil];
        alert.alertViewStyle=UIAlertViewStyleDefault;
        [alert show];
    };
    [timer Action];
}
@end

截图

100.94.gif

block和delegate的正确选择

  • 对于block和delegate两种消息传递的方式,没有孰好孰坏,。不同的情况仅仅只能决定适合用block还是delegate。例如:
  • 需要进行多个消息传递(即要实现很多接口方法时)应使用delegate。因为代码更直观。若用block,代码看起来费劲,并且不易维护。例如,UIKit框架中的的UITableView中有很多代理方法和数据源方法,如果我们用block来实现的话,block代码块中的内容会相当复杂。因为UITableView的每个代理方法和数据源方法都有我们需要返回的数据,这些返回的数据必定写在block代码块中,结果可想而知。
  • 一个委托对象的代理属性只能有一个代理对象,如果想要委托对象调用多个代理对象的回调应该用block。
delegate.png
  • delegate只是一个保存某个代理对象的地址,如果设置多个代理相当于重新赋值,只有最后一个设置的代理才会被真正赋值。

  • 单例对象最好不要用delegate。单例对象由于始终都只是同一个对象,如果使用delegate,就会造成我们上面说的delegate属性被重新赋值的问题,最终只能有一个对象可以正常响应代理方法。

  • 代理更加面相过程,block则更面向结果。从设计模式的角度来说,代理更佳面向过程,而block更佳面向结果。例如我们使用NSXMLParserDelegate代理进行XML解析,NSXMLParserDelegate中有很多代理方法,NSXMLParser会不间断调用这些方法将一些转换的参数传递出来,这就是NSXMLParser解析流程,这些通过代理来展现比较合适。而例如一个网络请求回来,就通过success、failure代码块来展示就比较好。

  • 从性能上来说,block的性能消耗要略大于delegate,因为block会涉及到栈区向堆区拷贝等操作,时间和空间上的消耗都大于代理。而代理只是定义了一个方法列表,在遵守协议对象的objc_protocol_list中添加一个节点,在运行时向遵守协议的对象发送消息即可。

  • 参考链接

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

推荐阅读更多精彩内容

  • *面试心声:其实这些题本人都没怎么背,但是在上海 两周半 面了大约10家 收到差不多3个offer,总结起来就是把...
    Dove_iOS阅读 27,121评论 29 470
  • 设计模式是什么? 你知道哪些设计模式,并简要叙述? 设计模式是一种编码经验,就是用比较成熟的逻辑去处理某一种类型的...
    不懂后悔阅读 823评论 0 53
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,016评论 4 62
  • 当你选定一条路, 另一条路的风景便与你无关。​
    袁益君阅读 157评论 0 1
  • 减肥减得太猛,身体乱套,大姨妈来了二十多天。去医院查。 结婚没? 没有。 有男朋友吗? 有。 有性生活吗? 有。 ...
    撕裂的光线阅读 175评论 0 0