ios runtime之交换方法method_exchangeImplementations的使用

Posted jeyios

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios runtime之交换方法method_exchangeImplementations的使用相关的知识,希望对你有一定的参考价值。

最常见的情况字体的适配

UIFont新建分类重写Load方法

#define SCALE(s)  ((s) / 375.0 * SCREEN_WIDTH)

+ (void)load {

    // 自己的方法

    Method newMethod =class_getClassMethod([self class], @selector(adjustFont:));

    // 系统的方法

    Method method = class_getClassMethod([self class], @selector(systemFontOfSize:));

    // 黑魔法交换方法

    method_exchangeImplementations(newMethod, method);

}

+(UIFont *)adjustFont:(CGFloat)fontSize{

    UIFont *newFont=nil;

    newFont = [UIFont adjustFont:SCALE(fontSize)];

    return newFont;

}

当然这个方法网上一搜一大推,但是重要的是思路,用自己的方法和系统的方法交换其实变成了adjustFont:实现的是systemFontOfSize:所指向的方法。

以上是关于ios runtime之交换方法method_exchangeImplementations的使用的主要内容,如果未能解决你的问题,请参考以下文章

ios开发runtime学习二:runtime交换方法

快速上手Runtime之方法交换

iOS 为何使用runtime多次方法交换后却能按照交换顺序依次执行代码逻辑?

iOS逆向之代码注入!(下)

iOS 方法交换的原理

iOS底层探索之Runtime: 动态方法解析