一文搞懂响应者链

以往每次在处理到拦截事件或者传递事件的时候,会想到响应者链,通过重写hit-testing方法去修改,但是真正写的时候却不知道该怎么下笔,总是要去百度,还是对这块的知识不太熟悉。在看了几篇博客和官方文档后,依据自己的理解,将这一个知识点记录下来,加强理解和记忆,以便在今后的开发过程中可以更高效快速的完成任务。

iOS的事件分发机制即寻找最佳响应视图并回调该视图对事件的处理,该过程分为两个步骤:

  1. 寻找最佳响应者

系统在捕获到用户事件后,会将其封装成UIEvent对象发送给当前的UIApplication,然后会调用window和其子视图的hit-testing方法找到最佳响应视图,通过重写hit-testing方法决定返回哪个视图。

寻找最佳响应者的流程图:


123.jpg

hit-testing实现逻辑:

- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
    // 1.判断view能否接收事件
    if (self.userInteractionEnabled == NO ||
        self.hidden == YES ||
        self.alpha <= 0.01) {
        return nil;
    }
    // 2.判断触摸点是否在view内
    if (![self pointInside:point withEvent:event]) {
        return nil;
    }
    // 3.递归调用view的所有子view,寻找最佳响应视图
    for (UIView *subView in self.subviews.reverseObjectEnumerator) {
        //转换到子视图坐标系上
        CGPoint childPoint = [self convertPoint:point toView:subView];
        UIView *fitView = [subView hitTest:childPoint withEvent:event];
        if (fitView) {
            return fitView;
        }
    }
    return self;
}
  1. 处理事件

当找到最佳响应视图后,同时也得到了一条响应者链,默认情况下会由该视图去处理事件,但是通过nextResponder属性,在同一响应者链上的其他响应者,也是可以处理该事件的。而且也可以重写nextResponder属性,来改变下一个响应者。

许多 UIKit 类已经覆盖了这个属性并返回了特定的对象,包括

响应链节点 表现
UIView 如果view是viewcontroller的根view,那么下一个响应者是viewcontroller,否则是super view
UIViewcontroller 如果viewcontroller的view是window的根view,那么下一个响应者是window;如果viewcontroller是另一个viewcontroller模态推出的,那么下一个响应者是另一个viewcontroller;如果viewcontroller的view被add到另一个viewcontroller的根view上,那么下一个响应者是另一个viewcontroller的根view
UIWindow UIWindow的下一个响应者是UIApplication
UIApplication 通常UIApplication是响应者链的顶端(如果app delegate也继承了UIResponder,事件还会继续传给app delegate)

搞清楚了这个流程后,就可以针对一些场景提出合适的解决方案。

  1. 改变视图的点击范围
// 重写需要修改点击范围的view的pointInside方法
- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event {
    // 上下左右各加100
    CGRect rect = CGRectInset(self.bounds, -100, -100);
    return CGRectContainsPoint(rect, point);
}
  1. 子视图不响应事件
// 重写该view的hit-testing方法,这样该视图的父视图会响应事件,同时也不会影响同级别其他视图
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
    return nil;
}
  1. 父视图和子视图同时响应事件
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    NSLog(@"%@ %@", self, NSStringFromSelector(_cmd));
//    [super touchesBegan:touches withEvent:event];
    [self.nextResponder touchesBegan:touches withEvent:event];
}

4.扩展UIResponder类,让响应链上的视图都有机会处理事件

@interface UIResponder (Add)
- (void)routerEvent:(id)info;
@end


@implementation UIResponder (Add)
- (void)routerEvent:(id)info {
    [self.nextResponder routerEvent:info];
}
@end
#import "GreenView.h"

@implementation GreenView
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    NSLog(@"%@ %@", self, NSStringFromSelector(_cmd));
    [self routerEvent:[NSString stringWithFormat:@"%@ 传递事件出去", self]];
}
...
@end
#import "ViewController.h"
#import "UIResponder+Add.h"

@implementation ViewController
- (void)routerEvent:(NSString *)info {
    NSLog(@"info = %@", info);
    [self.nextResponder routerEvent:info];
}
...
@end


> touchesBegan:withEvent:
info = > 传递事件出去

参考文档:

1.Using Responders and the Responder Chain to Handle Events

2.iOS 事件分发机制

你可能感兴趣的:(一文搞懂响应者链)