ios runtime之交換方法method_exchangeImplementations的使用
阿新 • • 發佈:2018-06-21
ace selector In exc lec AD fin 成了 AC
最常見的情況字體的適配
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的使用