1.简介
测试代码库:https://github.com/xufeng79x/EventHandler
响应者链是系统寻找事件相应者的一个路径,他是同touch事件的Hit-testing过程具有同等地位的事件寻主过程。
此路径开始于firstResponder结束于单例application。事件首先会让firstResponder对象去处理,如果他无法处理则会向其nextResponder对象转发事件
当所有对象都无法处理事件后将最后转发到application处并最终忽略该事件。
2.响应者链的结构
响应者链中的对象必须都是继承自UIResponder的,在UIResponder类中如下属性描绘着响应者链结构信息:
- nextResponder
- isFirstResponder
- canBecomeFirstResponder
- becomeFirstResponder
- canResignFirstResponder
- resignFirstResponder
canBecomeFirstResponder
方法来返回
YES
.
becomeFirstResponder
方法. 如果可以,需要可以自身能够进行调用。
becomeFirstResponder等方法必须要在响应者链的确定后才能调用,比如能够在viewDidAppear:方法中调用起效,而不能再viewWillAppear:中调用。
canBecomeFirstResponder
方法来返回
YES
.但是并不需要去覆盖becomeFirstResponder方法。当然
if ([super becomeFirstResponder]) { // 其他功能代码 }
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.
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.
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.
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.
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.
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.
UIKit框架自动帮助我们将文本控件设置为firstResponder,但是对于其他对象来说需要去明确地实现becomeFirstResponder方法等。
5.响应者链的事件传递方式
如果事件当前对象(hit-test view或者第一相应者)不能处理事件的时候,UIKit框架将此事件传递给当前对象的nextResponder指向的对象。每一个响应者都将决定是否自己处理还是将事件继续传递给它通过nextResponder属性指向的想一个响应者直到有对象能够处理事件或者传递到链表结尾(application对象)。
通常事件当前对象是一个view。事件当前对象首先获得处理事件的机会。下面的图直观的解释了两种配置的事件传递方式。不同的配置会有不同的事件传递路径但是原理都是一样的。
对于左边的应用的事件传递路径如下:
事件当前view接受的事件或者方法。如果他不能够处理,他将事件传递给它的父view。
右边的应用的事件传递路径稍微有点不一样,如下:
在不能被处理的情况下事件将会被传递给当前controller的顶层view。
当前controller的顶层view不能处理就传递给他所在的controller。
当前controller将事件传递给他的顶层View的父view。
步骤1-3将会不断的循环知道找到根controller。
根controller将事件传递给window对象。
window对象将事件传递给app对象。
重要: 如果你自定义实现了一个view去处理事件,当发生你不关心的事件时候,不要在代码中直接去使用nextResponder属性直接调用响应者对象。你应该直接调动父类的事件处理方法,将事件参数直接传递给父类的事件处理方法。这样UIKit框架将自动会在响应者链中自动的去寻找事件的处理者。
6.思考
上面balabala说了一顿,纯粹是对于官方文档的翻译,但是即使读懂了官方文档依然会产生很多疑问。
疑问一:view在什么情况下能够变成第一响应者?条件是什么?
疑问二:如果一个touch事件发生后事件当前对象并不处理,他会正确传递给他的父view吗?要是此时认为设定firstResponder是其他view会出现什么结果呢?
上述纯粹是一个初学者的疑问,按照惯例我也将做一些测试区释疑这些问题。
#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]; }
-(BOOL)canBecomeFirstResponder { return YES; }
然后在viewDidAppear方法中去调用想要成为第一响应者的becomeFirstResponder方法即可。
如在本例中将viewD设定我第一响应者
-(void) viewDidAppear:(BOOL)animated { [self.viewD becomeFirstResponder]; }
然后去触发按钮事件:
// 将button设置action,target设置为nil,这将导致此事件去像第一相应者发送事件,便于我们定位第一响应者是谁 [self.button addTarget:nil action:@selector(pressPrint) forControlEvents:UIControlEventTouchUpInside|UIControlEventTouchUpOutside];
我们看到,由于按钮的target是设置为nil的,所以系统将去寻找当前第一响应者,如果第一响应者有pressPrint这个方法,那么他会调用它的pressPrint方法。而现在viewD中是实现了此方法:
// 打印按钮处理方法,用于测试定位第一响应者是谁 -(void)pressPrint { NSLog(@"do pressPrint,I am in %@", self.name); }
程序启动点击按钮,日志打印:
2016-02-04 09:59:04.258 XFResponderChainTest[822:21945] do pressPrint,I am in viewD
说明,在例子中设定第一响应者成功。
疑问二:如果一个touch事件发生后事件当前对象并不处理,他会正确传递给他的父view吗?要是此时认为设定firstResponder是其他view会出现什么结果呢?
例如在本测试中,在view的实现方法中都实现了touchesBegan方法如下,他会将整触摸事件的响应者链打印出来。
// 处理触摸事件 -(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event { // 打印当前对象处理结果 NSLog(@"do touchBegan, I am in %@", self.name); // 继续执行父类方法,由此将得出整个响应者链路径 [super touchesBegan:touches withEvent:event]; }
情况1:
当当前对象有能力处理事件的时候:
此时我们去点击将viewD设定为第一响应者,然后去触摸viewC,那么这个触摸事件会第一时间找第一响应者吗?2016-02-04 10:02:05.176 XFResponderChainTest[822:21945] do touchBegan, I am in viewC 2016-02-04 10:02:05.176 XFResponderChainTest[822:21945] do touchBegan, I am in viewB 2016-02-04 10:02:05.177 XFResponderChainTest[822:21945] do touchBegan, I am in viewA
情况二:
在情况一种,viewC是有能力处理触摸事件的,但是让他没有能力触发事件的时候回发生什么呢?会将事件转发给第一响应者吗?
1.创建NoToouchEventView类,依附于viewC,这个类是没有touch事件的。2016-02-04 10:17:52.966 XFResponderChainTest[960:28645] do touchBegan, I am in viewB 2016-02-04 10:17:52.966 XFResponderChainTest[960:28645] do touchBegan, I am in viewA
可以看到,虽然viewD还是第一响应者,但是在touch事件中,依然按照hit-testing的机制在转发事件,并不理睬响应者链。