[New learn]响应者链机制介绍

1.简介

  响应者链是系统寻找事件相应者的一个路径,他是同touch事件的Hit-testing过程具有同等地位的事件寻主过程。

此路径开始于firstResponder结束于单例application。事件首先会让firstResponder对象去处理,如果他无法处理则会向其nextResponder对象转发事件

当所有对象都无法处理事件后将最后转发到application处并最终忽略该事件。

 

2.响应者链的结构

 响应者链中的对象必须都是继承自UIResponder的,在UIResponder类中如下属性描绘着响应者链结构信息:

Managing the Responder Chain

  • - nextResponder
  • - isFirstResponder
  • - canBecomeFirstResponder
  • - becomeFirstResponder
  • - canResignFirstResponder
  • - resignFirstResponder 
   就像C语言的链表结构一样,他通过一个属性nextResponder链接下一个事件处理对象,我们也可以看到第一响应者是可以通过自身becomeFirstResponder方法进行注册的,当然前期是当前对象可以成为第一响应者(canBecomeFirstResponder返回需要为YES)
 
3.如何成为第一响应者:
第一相应者是被定义为首先处理事件的对象,通常而言第一次响应者为一个view对象,可以通过如下方法来注册成为第一响应者:
1.覆盖  canBecomeFirstResponder 方法来返回 YES.
2.实现 becomeFirstResponder 方法. 如果可以,需要可以自身能够进行调用。
 
??需要注意的是: becomeFirstResponder等方法必须要在响应者链的确定后才能调用,比如能够在viewDidAppear:方法中调用起效,而不能再viewWillAppear:中调用。
 
3.如果你想要一个UIView或者其子类能够成为第一响应者,那么需要覆盖  canBecomeFirstResponder 方法来返回 YES.但是并不需要去覆盖becomeFirstResponder方法。当然
如果你醒目的告知用户当前谁在响应事件(比如高亮区域等),那么你可以去覆盖它,并在调用父类becomeFirstResponder成功的情况下去做一些特别的效果:
if ([super becomeFirstResponder])
{
       // 其他功能代码
}
 
4.响应者链的输入事件
那么什么事件会传递给响应者链来进行处理呢?除了触摸事件由hit-testing过程来寻主外,系统也会产生和接受其他类型的事件,这些事件将有响应者链来进行寻主,事件包括:
  • Touch events. If the hit-test view cannot handle a touch event, the event is passed up a chain of responders that starts with the hit-test view.

  • --》触摸事件。如果hit-test view没有处理触摸事件,则这些事件将从以hit-test view为起点的响应者链进行处理。
  • Motion events. To handle shake-motion events with UIKit, the first responder must implement either the motionBegan:withEvent: or motionEnded:withEvent: method of the UIResponder class, as described in Detecting Shake-Motion Events with UIEvent.

  • --》运动事件。如果firstResponder要想处理运动事件,则必须实现 motionBegan:withEvent:或者motionEnded:withEvent:方法,详细说明见Detecting Shake-Motion Events with UIEvent.
  • Remote control events. To handle remote control events, the first responder must implement the remoteControlReceivedWithEvent: method of the UIResponder class.

  • --》远程事件。为了处理远程事件,firstResponder必须实现remoteControlReceivedWithEvent:方法。
  • Action messages. When the user manipulates a control, such as a button or switch, and the target for the action method is nil, the message is sent through a chain of responders starting with the control view.

  • --》功能消息。当用户操作一个control控件,比如按钮或者开关控件,如果为设置对应的action处理方法,那么这些事件将会被传递给以当前control控件为起点的响应者链去处理。
  • Editing-menu messages. When a user taps the commands of the editing menu, iOS uses a responder chain to find an object that implements the necessary methods (such as cut:copy:, and paste:). For more information, see Displaying and Managing the Edit Menuand the sample code project, CopyPasteTile.

  • --》编辑菜单选择消息。当用户触发了编辑菜单命令,IOS通过响应者链去发现实现了必要方法的对象(诸如:cut:,copy:和paste:)。详细可参考Displaying and Managing the Edit Menu和样例代码工程CopyPasteTile
  • Text editing. When a user taps a text field or a text view, that view automatically becomes the first responder. By default, the virtual keyboard appears and the text field or text view becomes the focus of editing. You can display a custom input view instead of the keyboard if it’s appropriate for your app. You can also add a custom input view to any responder object. For more information, see Custom Views for Data Input.

  • --》文本编辑。当用户去点击文本编辑区域或者显示文本输入控件,这个控件就自动变成了firstResponder。默认地,虚拟键盘将会弹出。你可以使用自定义的输入方式来取代默认键盘。详细可参考Custom Views for Data Input

UIKit框架自动帮助我们将文本控件设置为firstResponder,但是对于其他对象来说需要去明确地实现becomeFirstResponder方法等。

 

 

5.响应者链的事件传递方式

  如果事件当前对象(hit-test view或者第一相应者)不能处理事件的时候,UIKit框架将此事件传递给当前对象的nextResponder指向的对象。每一个响应者都将决定是否自己处理还是将事件继续传递给它通过nextResponder属性指向的想一个响应者直到有对象能够处理事件或者传递到链表结尾(application对象)。

通常事件当前对象是一个view。事件当前对象首先获得处理事件的机会。下面的图直观的解释了两种配置的事件传递方式。不同的配置会有不同的事件传递路径但是原理都是一样的。

[New learn]响应者链机制介绍_第1张图片 

对于左边的应用的事件传递路径如下:

  1. 事件当前view接受的事件或者方法。如果他不能够处理,他将事件传递给它的父view。

  2. 父view尝试去处理事件。如果父view还是不能处理此事件,他将事件传递给它的父view。
  3. 就这样直到将事件传递给controller的顶层view。如果顶层view还是不能处理该事件,顶层view会将事件传递给controller。
  4. controller尝试去处理事件,如果他也不能处理,则将事件传递给window。
  5. 如果window对象依然不能处理事件,则将事件转发给单例的application对象。
  6. 如果app对象不能处理事件,则将事件抛弃。

右边的应用的事件传递路径稍微有点不一样,如下:

  1. 在不能被处理的情况下事件将会被传递给当前controller的顶层view。

  2. 当前controller的顶层view不能处理就传递给他所在的controller。

  3. 当前controller将事件传递给他的顶层View的父view。

    步骤1-3将会不断的循环知道找到根controller。

  4. 根controller将事件传递给window对象。

  5. window对象将事件传递给app对象。

重要: 如果你自定义实现了一个view去处理事件,当发生你不关心的事件时候,不要在代码中直接去使用nextResponder属性直接调用响应者对象。你应该直接调动父类的事件处理方法,将事件参数直接传递给父类的事件处理方法。这样UIKit框架将自动会在响应者链中自动的去寻找事件的处理者。

 

6.思考

上面balabala说了一顿,纯粹是对于官方文档的翻译,但是即使读懂了官方文档依然会产生很多疑问。

疑问一:view在什么情况下能够变成第一响应者?条件是什么?

疑问二:如果一个touch事件发生后事件当前对象并不处理,他会正确传递给他的父view吗?要是此时认为设定firstResponder是其他view会出现什么结果呢?

疑问三:如果将firstResponder对象设置为上述图片中的链中间的某个对象,那是不是这个view的子view就会跳过而不会参与到事件的处理?

疑问四:

上述纯粹是一个初学者的疑问,按照惯例我也将做一些测试区释疑这些问题。

 
7.证明
7.1为了证明上述问题写了一个小程序,它的机构如下:
[New learn]响应者链机制介绍_第2张图片
7.2 其中View为XFFirstResponder实例,代码如下,其中根据第三节描述的要求,将canBecomeFirstResponder和becomeFirstResponder方法重写
#import "XFFirstResponder.h"

@implementation XFFirstResponder

-(BOOL) canBecomeFirstResponder { return YES; }// 打印按钮处理方法,用于测试定位第一响应者是谁 -(void)pressPrint { NSLog(@"do pressPrint,I am in %@", self.name); } // 处理触摸事件 -(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event { // 打印当前对象处理结果 NSLog(@"do touchBegan, I am in %@", self.name); // 继续执行父类方法,由此将得出整个响应者链路径 [super touchesBegan:touches withEvent:event]; }

7.3 测试主方法设定如下:

@implementation ViewController

-(void)viewDidLoad
{
    // 将view设定名称便于区分
    self.viewA.name = @"viewA";
    self.viewB.name = @"viewB";
    self.viewC.name = @"viewC";
    self.viewD.name = @"viewD";
    
    // 将button设置action,target设置为nil,这将导致此事件去像第一相应者发送事件,便于我们定位第一响应者是谁
    [self.button addTarget:nil action:@selector(pressPrint) forControlEvents:UIControlEventTouchUpInside|UIControlEventTouchUpOutside];
}

 

 
疑问一:view在什么情况下能够变成第一响应者?条件是什么? 
证明一:首先
 
 
 
.

你可能感兴趣的:([New learn]响应者链机制介绍)