码迷,mamicode.com
首页 > 移动开发 > 详细

ios runtime之交换方法method_exchangeImplementations的使用

时间:2018-06-21 19:42:28      阅读:1049      评论:0      收藏:0      [点我收藏+]

标签:change   tor   turn   自己的   back   ret   fonts   self   重写   

最常见的情况字体的适配

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的使用

标签:change   tor   turn   自己的   back   ret   fonts   self   重写   

原文地址:https://www.cnblogs.com/jeyios/p/9210512.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!