iOS利用runtime全局修改系統(tǒng)字體或者三方字體
.h
//利用runtime交換方法踊东,全局修改系統(tǒng)字體或者三方字體
#import <UIKit/UIKit.h>
@interface UIFont (FontNameSize)
@end
.m
//利用runtime交換方法醉蚁,全局修改系統(tǒng)字體或者三方字體
#import "UIFont+FontNameSize.h"
@implementation UIFont (FontNameSize)
//只執(zhí)行一次的方法构灸,在這個地方 替換方法
+(void)load{
//保證線程安全
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
Class class = [self class];
//拿到系統(tǒng)方法
Method orignalMethod = class_getClassMethod(class, @selector(systemFontOfSize:));
//拿到自己定義的方法
Method myMethod = class_getClassMethod(class, @selector(test_systemFontOfSize:));
//交換方法
method_exchangeImplementations(orignalMethod, myMethod);
//注意,只有調(diào)用了下面這個方法的控件才會執(zhí)行字體修改滥酥,默認字號大小的控件不會修改。
//[UIFont systemFontOfSize:12]
});
}
//自己的方法
+ (UIFont *)test_systemFontOfSize:(CGFloat)fontSize{
//系統(tǒng)字體:GillSans-BoldItalic AppleSDGothicNeo-Light HiraMaruProN-W4
UIFont *font = [UIFont fontWithName:@"AppleSDGothicNeo-Light" size:fontSize];
if (!font){
//判空,如果字體不存在就返回系統(tǒng)默認字體白群,不然會崩潰
return [self test_systemFontOfSize:fontSize];
}
return font;
}
@end