思考:多次使用method_exchangeImplementations同一个方法会是怎样的结果,以及分类的加载顺序又是什么呢?

先看第一个问题:分类的加载顺序

举例UIViewController3个分类分别为
UIViewController+A
UIViewController+B
UIViewController+C

.A

+ (void)load {
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        
        NSLog(@"----A---");
    });
}

.B

+ (void)load {
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        
        NSLog(@"----B---");
    });
}

.C

+ (void)load {
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        
        NSLog(@"----C---");
    });
}

运行结果

2018-03-23 11:06:10.975429+0800 ExchangeImp[4802:195579] ----C---
2018-03-23 11:06:10.976176+0800 ExchangeImp[4802:195579] ----A---
2018-03-23 11:06:10.976392+0800 ExchangeImp[4802:195579] ----B---

这个顺序是怎么来的的呢,就不卖关子了,本文的重点是第二个问题

15217744745721.jpg

其实是这里的顺序,其实压栈的顺序,上面的顺序是C,B,A

我们修改下让以B,A,C输出

15217745766821.jpg

运行输出

2018-03-23 11:09:23.697753+0800 ExchangeImp[4881:201198] ----B---
2018-03-23 11:09:23.698441+0800 ExchangeImp[4881:201198] ----A---
2018-03-23 11:09:23.698639+0800 ExchangeImp[4881:201198] ----C---

第二个问题:多次使用method_exchangeImplementations同一个方法会是怎样的结果

method_exchangeImplementations关于该方法的使用请自行学习,不是本文的重点

这里我们同时对系统的presentViewController:animated:completion:举例

代码结构

.
├── ExchangeImp
│   ├── AppDelegate.h
│   ├── AppDelegate.m
│   ├── TestViewController.h
│   ├── TestViewController.m
│   ├── UIViewController+A.h
│   ├── UIViewController+A.m
│   ├── UIViewController+B.h
│   ├── UIViewController+B.m
│   ├── UIViewController+C.h
│   ├── UIViewController+C.m
│   ├── ViewController.h
│   ├── ViewController.m
│   └── main.m
└── ExchangeImpUITests
    ├── ExchangeImpUITests.m
    └── Info.plist

A.m

//
//  UIViewController+A.m
//  ExchangeImp
//
//  Created by fangshufeng on 2018/3/23.
//  Copyright © 2018年 fangshufeng. All rights reserved.
//

#import "UIViewController+A.h"
#import <objc/runtime.h>

@implementation UIViewController (A)

+ (void)load {
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        NSLog(@"---A-被加载了--");  
        Class class = [self class];
        
        SEL originalSelector = @selector(presentViewController:animated:completion:);
        SEL swizzledSelector = @selector(aAlertPresentViewController:animated:completion:);
        
        Method originalMethod = class_getInstanceMethod(class, originalSelector);
        Method swizzledMethod = class_getInstanceMethod(class, swizzledSelector);
        method_exchangeImplementations(originalMethod, swizzledMethod);
        
    });
}

- (void)aAlertPresentViewController:(UIViewController *)viewControllerToPresent
                           animated:(BOOL)flag
                         completion:(void (^)(void))completion {
    
    NSLog(@"---A-被执行了--")
    
    [self aAlertPresentViewController:viewControllerToPresent
                             animated:flag
                           completion:completion];
}

@end

B.m

//
//  UIViewController+B.m
//  ExchangeImp
//
//  Created by fangshufeng on 2018/3/23.
//  Copyright © 2018年 fangshufeng. All rights reserved.
//

#import "UIViewController+B.h"
#import <objc/runtime.h>

@implementation UIViewController (B)

+ (void)load {
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        NSLog(@"---B-被加载了--");
        Class class = [self class];
        
        SEL originalSelector = @selector(presentViewController:animated:completion:);
        SEL swizzledSelector = @selector(bAlertPresentViewController:animated:completion:);
        
        Method originalMethod = class_getInstanceMethod(class, originalSelector);
        Method swizzledMethod = class_getInstanceMethod(class, swizzledSelector);
        method_exchangeImplementations(originalMethod, swizzledMethod);
        
    });
}

- (void)bAlertPresentViewController:(UIViewController *)viewControllerToPresent
                           animated:(BOOL)flag
                         completion:(void (^)(void))completion {
    
    NSLog(@"---B-被执行了--");
    [self bAlertPresentViewController:viewControllerToPresent
                             animated:flag
                           completion:completion];
}

@end

C.m

//
//  UIViewController+C.m
//  ExchangeImp
//
//  Created by fangshufeng on 2018/3/23.
//  Copyright © 2018年 fangshufeng. All rights reserved.
//

#import "UIViewController+C.h"
#import <objc/runtime.h>

@implementation UIViewController (C)

+ (void)load {
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        NSLog(@"---C-被加载了--");
        Class class = [self class];
        
        SEL originalSelector = @selector(presentViewController:animated:completion:);
        SEL swizzledSelector = @selector(cAlertPresentViewController:animated:completion:);
        
        Method originalMethod = class_getInstanceMethod(class, originalSelector);
        Method swizzledMethod = class_getInstanceMethod(class, swizzledSelector);
        method_exchangeImplementations(originalMethod, swizzledMethod);
        
    });
}

- (void)cAlertPresentViewController:(UIViewController *)viewControllerToPresent
                           animated:(BOOL)flag
                         completion:(void (^)(void))completion {
    NSLog(@"---C-被执行了--");
    [self cAlertPresentViewController:viewControllerToPresent
                             animated:flag
                           completion:completion];
}


@end

ViewController.m

//
//  ViewController.m
//  ExchangeImp
//
//  Created by fangshufeng on 2018/3/23.
//  Copyright © 2018年 fangshufeng. All rights reserved.
//

#import "ViewController.h"
#import "TestViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
}


- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
    TestViewController *vc = [[TestViewController alloc] init];
    [self presentViewController:vc animated:YES completion:nil];
}

@end

build-Phase中的compile source中顺序如下

15217831021195.jpg

运行点击后

2018-03-23 11:25:04.816560+0800 ExchangeImp[5364:228651] ---B-被加载了--
2018-03-23 11:25:04.817206+0800 ExchangeImp[5364:228651] ---A-被加载了--
2018-03-23 11:25:04.817407+0800 ExchangeImp[5364:228651] ---C-被加载了--

2018-03-23 11:25:09.314340+0800 ExchangeImp[5364:228651] ---C-被执行了--
2018-03-23 11:25:09.314502+0800 ExchangeImp[5364:228651] ---A-被执行了--
2018-03-23 11:25:09.314619+0800 ExchangeImp[5364:228651] ---B-被执行了--

发现2个现象:

  1. 所有的分类方法都被执行了;
  2. 正好和加载的顺序相反

下面具体解释下这2个现象
在分类A、B、C执行之前2个方法是这样的指向的

15217770799332.jpg

在经历分类B以后,变成下面这样

15217771048030.jpg

所以在如果没有AC的话,那么在执行

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
    TestViewController *vc = [[TestViewController alloc] init];
    [self presentViewController:vc animated:YES completion:nil];
}

调用顺序为:
presentViewController:animated:completion: -> NSLog(@"---B-被执行了--"); -> bAlertPresentViewController:animated:completion:)

所以输出顺序应该是

---B-被执行了--

然后弹出vc

回到正题,那么在执行分类A之前的样子,A方法和presentViewController:animated:completion:指向就是下图

15217773012806.jpg

在执行分类A以后,指向如下

15217773565704.jpg

所以如果没有分类C的话这时候的输出应该为

---A-被执行了--
---B-被执行了--

继续分析,在分类c执行之前,各个指向为下图

15217774989252.jpg

执行以后如下

15217775721780.jpg

则执行顺序就很清楚了,到这里也就解释了为何一开始是的输出

2018-03-23 11:25:04.816560+0800 ExchangeImp[5364:228651] ---B-被加载了--
2018-03-23 11:25:04.817206+0800 ExchangeImp[5364:228651] ---A-被加载了--
2018-03-23 11:25:04.817407+0800 ExchangeImp[5364:228651] ---C-被加载了--
2018-03-23 11:25:09.314340+0800 ExchangeImp[5364:228651] ---C-被执行了--
2018-03-23 11:25:09.314502+0800 ExchangeImp[5364:228651] ---A-被执行了--
2018-03-23 11:25:09.314619+0800 ExchangeImp[5364:228651] ---B-被执行了--

接下来通过logo打印证实上面的观点
改造下之前的代码以B.m为例

//
//  UIViewController+B.m
//  ExchangeImp
//
//  Created by fangshufeng on 2018/3/23.
//  Copyright © 2018年 fangshufeng. All rights reserved.
//

#import "UIViewController+B.h"
#import <objc/runtime.h>

@implementation UIViewController (B)

+ (void)load {
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        NSLog(@"---B-被加载了--");
        Class class = [self class];
        
        SEL originalSelector = @selector(presentViewController:animated:completion:);
        SEL swizzledSelector = @selector(bAlertPresentViewController:animated:completion:);
        
        Method originalMethod = class_getInstanceMethod(class, originalSelector);
        Method swizzledMethod = class_getInstanceMethod(class, swizzledSelector);
        
        NSLog(@"B-begin---%p-----%p",method_getImplementation(originalMethod),method_getImplementation(swizzledMethod));
        method_exchangeImplementations(originalMethod, swizzledMethod);
        
        NSLog(@"B-after---%p-----%p",method_getImplementation(originalMethod),method_getImplementation(swizzledMethod));
    });
}

- (void)bAlertPresentViewController:(UIViewController *)viewControllerToPresent
                           animated:(BOOL)flag
                         completion:(void (^)(void))completion {
    
    NSLog(@"---B-被执行了--");
    [self bAlertPresentViewController:viewControllerToPresent
                             animated:flag
                           completion:completion];
}

@end

执行以后

ExchangeImp[6709:319693] ---B-被加载了--
ExchangeImp[6709:319693] B-begin---0x10cedabc8-----0x10b6241d0
ExchangeImp[6709:319693] B-after---0x10b6241d0-----0x10cedabc8

ExchangeImp[6709:319693] ---A-被加载了--
ExchangeImp[6709:319693] A-begin---0x10b6241d0-----0x10b624450
ExchangeImp[6709:319693] A-after---0x10b624450-----0x10b6241d0

ExchangeImp[6709:319693] ---C-被加载了--
ExchangeImp[6709:319693] C-begin---0x10b624450-----0x10b6246d0
ExchangeImp[6709:319693] C-after---0x10b6246d0-----0x10b624450

主要看下originalMethod的地址

A的开始bengin的开始也即是originalMethod指向为0x10b6241d0,正是在BB-after中交换后的0x10b6241d0

可以看到每次交换的开始都是上次交换的结果

结论

多次对某个方法进行method_exchangeImplementations所有交换的都会执行到,执行顺序可以自己在build-phase中修改

项目地址
(完)

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

推荐阅读更多精彩内容