使用事件響應(yīng)鏈處理事件

概述

Apps receive and handle events using responder objects. A responder object is any instance of the UIResponder class, and common subclasses include UIView, UIViewController, and UIApplication. Responders receive the raw event data and must either handle the event or forward it to another responder object. When your app receives an event, UIKit automatically directs that event to the most appropriate responder object, known as the first responder.

Unhandled events are passed from responder to responder in the active responder chain, which is the dynamic configuration of your app’s responder objects. Figure 1 shows the responders in an app whose interface contains a label, a text field, a button, and two background views. The diagram also shows how events move from one responder to the next, following the responder chain.

Figure 1.png

If the text field does not handle an event, UIKit sends the event to the text field’s parent UIView object, followed by the root view of the window. From the root view, the responder chain diverts to the owning view controller before directing the event to the window. If the window cannot handle the event, UIKit delivers the event to the UIApplication object, and possibly to the app delegate if that object is an instance of UIResponder and not already part of the responder chain.

基于ResponderChain實(shí)現(xiàn)對(duì)象交互

我們可以借用responder chain實(shí)現(xiàn)了一個(gè)自己的事件傳遞鏈。

//UIResponder的分類
//.h文件
#import <UIKit/UIKit.h>

@interface UIResponder (Router)

- (void)routerEventWithName:(NSString *)eventName userInfo:(NSDictionary *)userInfo;

@end

//.m文件
#import "UIResponder+Router.h"

@implementation UIResponder (Router)

- (void)routerEventWithName:(NSString *)eventName userInfo:(NSDictionary *)userInfo {
    [[self nextResponder] routerEventWithName:eventName userInfo:userInfo];
}

@end
//NSObject
//.h文件
#import <Foundation/Foundation.h>

@interface NSObject (Invocation)

- (NSInvocation *)createInvocationWithSelector:(SEL)aSelector;

@end

//.m文件

#import "NSObject+Invocation.h"

@implementation NSObject (Invocation)

- (NSInvocation *)createInvocationWithSelector:(SEL)aSelector {
    //1、創(chuàng)建簽名對(duì)象
    NSMethodSignature *signature = [[self class] instanceMethodSignatureForSelector:aSelector];
    
    //2、判斷傳入的方法是否存在
    if (signature==nil) {
        //傳入的方法不存在 就拋異常
        NSString*info = [NSString stringWithFormat:@"-[%@ %@]:unrecognized selector sent to instance",[self class],NSStringFromSelector(aSelector)];
        @throw [[NSException alloc] initWithName:@"方法沒(méi)有" reason:info userInfo:nil];
        return nil;
    }
    //3忧换、提鸟、創(chuàng)建NSInvocation對(duì)象
    NSInvocation*invocation = [NSInvocation invocationWithMethodSignature:signature];
    //4哗脖、保存方法所屬的對(duì)象
    invocation.target = self;
    invocation.selector = aSelector;
    return invocation;
}

@end

在需要響應(yīng)事件的類中重載routerEventWithName::方法

- (void)routerEventWithName:(NSString *)eventName userInfo:(NSDictionary *)userInfo {
    [self.eventProxy handleEvent:eventName userInfo:userInfo];
}

使用EventProxy類來(lái)專門處理對(duì)應(yīng)的事件

//EventProxy.h
#import <Foundation/Foundation.h>

@interface EventProxy : NSObject

- (void)handleEvent:(NSString *)eventName userInfo:(NSDictionary *)userInfo;

@end

//EventProxy.m
#import "EventProxy.h"
#import "ResponderChainDefine.h"
#import "UIResponder+Router.h"
#import "NSObject+Invocation.h"

@interface EventProxy ()


@property (nonatomic, strong) NSDictionary *eventStrategy;

@end

@implementation EventProxy

- (void)handleEvent:(NSString *)eventName userInfo:(NSDictionary *)userInfo {
    
    NSInvocation *invocation = self.eventStrategy[eventName];
    [invocation setArgument:&userInfo atIndex:2];
    [invocation invoke];
}

- (void)cellLeftButtonClick:(NSDictionary *)userInfo {
    NSIndexPath *indexPath = userInfo[@"indexPath"];
    NSLog(@"indexPath:section:%ld, row:%ld 左邊按鈕被點(diǎn)擊啦介杆!",indexPath.section, indexPath.row);
}

- (void)cellMiddleButtonClick:(NSDictionary *)userInfo {
    NSIndexPath *indexPath = userInfo[@"indexPath"];
    NSLog(@"indexPath:section:%ld, row:%ld 中間按鈕被點(diǎn)擊啦皆看!",indexPath.section, indexPath.row);
}

- (void)cellRightButtonClick:(NSDictionary *)userInfo {
    NSIndexPath *indexPath = userInfo[@"indexPath"];
    NSLog(@"indexPath:section:%ld, row:%ld 右邊按鈕被點(diǎn)擊啦家破!",indexPath.section, indexPath.row);
}

#pragma mark - getter & setter
- (NSDictionary <NSString *, NSInvocation *>*)eventStrategy {
    if (!_eventStrategy) {
        _eventStrategy = @{
                           kTableViewCellEventTappedLeftButton:[self createInvocationWithSelector:@selector(cellLeftButtonClick:)],
                           kTableViewCellEventTappedMiddleButton:[self createInvocationWithSelector:@selector(cellMiddleButtonClick:)],
                           kTableViewCellEventTappedRightButton:[self createInvocationWithSelector:@selector(cellRightButtonClick:)]
                           };
    }
    return _eventStrategy;
}

@end

TableViewCell的事件中颜说,調(diào)用routerEventWithName:userInfo:方法,就會(huì)調(diào)用到EventProxy類中的方法汰聋。

@implementation TableViewCell

- (IBAction)leftButtonClick:(UIButton *)sender {
    [self routerEventWithName:kTableViewCellEventTappedLeftButton userInfo:@{@"indexPath":self.indexPath}];
}

- (IBAction)middelButtonClick:(UIButton *)sender {
    [self routerEventWithName:kTableViewCellEventTappedMiddleButton userInfo:@{@"indexPath":self.indexPath}];
}

- (IBAction)rightButtonClick:(UIButton *)sender {
    [self routerEventWithName:kTableViewCellEventTappedRightButton userInfo:@{@"indexPath":self.indexPath}];
}

@end

總結(jié)

  • 使用這種基于Responder Chain的方式來(lái)傳遞事件门粪,在復(fù)雜UI層級(jí)的頁(yè)面中,可以避免無(wú)謂的delegate聲明烹困。
  • 事件處理的邏輯得到歸攏玄妈,在這個(gè)方法里面下斷點(diǎn)就能夠管理所有的事件處理。

參考文章

Using Responders and the Responder Chain to Handle Events
一種基于ResponderChain的對(duì)象交互方式
responderChainDemo

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市拟蜻,隨后出現(xiàn)的幾起案子绎签,更是在濱河造成了極大的恐慌,老刑警劉巖酝锅,帶你破解...
    沈念sama閱讀 207,248評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件诡必,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡搔扁,警方通過(guò)查閱死者的電腦和手機(jī)爸舒,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)阁谆,“玉大人碳抄,你說(shuō)我怎么就攤上這事愉老〕÷蹋” “怎么了?”我有些...
    開封第一講書人閱讀 153,443評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵嫉入,是天一觀的道長(zhǎng)焰盗。 經(jīng)常有香客問(wèn)我,道長(zhǎng)咒林,這世上最難降的妖魔是什么熬拒? 我笑而不...
    開封第一講書人閱讀 55,475評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮垫竞,結(jié)果婚禮上澎粟,老公的妹妹穿的比我還像新娘。我一直安慰自己欢瞪,他們只是感情好活烙,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,458評(píng)論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著遣鼓,像睡著了一般啸盏。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上骑祟,一...
    開封第一講書人閱讀 49,185評(píng)論 1 284
  • 那天回懦,我揣著相機(jī)與錄音,去河邊找鬼次企。 笑死怯晕,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的缸棵。 我是一名探鬼主播舟茶,決...
    沈念sama閱讀 38,451評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了稚晚?” 一聲冷哼從身側(cè)響起崇堵,我...
    開封第一講書人閱讀 37,112評(píng)論 0 261
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎客燕,沒(méi)想到半個(gè)月后鸳劳,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,609評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡也搓,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,083評(píng)論 2 325
  • 正文 我和宋清朗相戀三年赏廓,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片傍妒。...
    茶點(diǎn)故事閱讀 38,163評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡幔摸,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出颤练,到底是詐尸還是另有隱情既忆,我是刑警寧澤,帶...
    沈念sama閱讀 33,803評(píng)論 4 323
  • 正文 年R本政府宣布嗦玖,位于F島的核電站患雇,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏宇挫。R本人自食惡果不足惜苛吱,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,357評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望器瘪。 院中可真熱鬧翠储,春花似錦、人聲如沸橡疼。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)衰齐。三九已至任斋,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間耻涛,已是汗流浹背废酷。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評(píng)論 1 261
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留抹缕,地道東北人澈蟆。 一個(gè)月前我還...
    沈念sama閱讀 45,636評(píng)論 2 355
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像卓研,于是被迫代替她去往敵國(guó)和親趴俘。 傳聞我的和親對(duì)象是個(gè)殘疾皇子睹簇,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,925評(píng)論 2 344

推薦閱讀更多精彩內(nèi)容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi閱讀 7,294評(píng)論 0 10
  • 2017.4.16 6組家長(zhǎng)陳鳳蘭 #做個(gè)有耐心的媽媽# 陳志朗10歲 踐行打卡 14/30 孩子第三個(gè)30天目標(biāo)...
    陪著孩子一起成長(zhǎng)閱讀 232評(píng)論 0 2
  • 郭相麟 出門在外冷暖自知,某天下午我的時(shí)間在走錯(cuò)路寥闪、繞遠(yuǎn)路太惠,來(lái)回倒騰中度過(guò)! 方向不清晰疲憋,依賴著導(dǎo)航給出的方向...
    郭相麟閱讀 256評(píng)論 0 0
  • 親愛(ài)的何老師: 您好凿渊! 教了我們?nèi)甑哪欢▽?duì)我們的性格、愛(ài)好十分了解缚柳。在課堂上我們是師徒...
    明月旺仔閱讀 328評(píng)論 0 0
  • 2017.8.4 大家一夜的祈禱,換來(lái)多寶咪的平安挺谆易贰堵幽! 二號(hào)天使曹女士開始為多寶咪做二次清潔,用棉簽輕輕擦拭她的...
    風(fēng)和日麗wy閱讀 487評(píng)論 3 7