iOS字体根据不同屏幕尺寸适配

时间:2022-05-01 10:57:41

因为视图使用storyboard 和 XIB拖拽进来了,如果需要对不同大小的屏幕进行Font 字体适配的话可以使用分类。

在load 方法中 利用OC的运行时机制,对所有的 UIButton 、UILabel 做处理。

关键代码:

UIButton 按钮的处理方式 

+ (void)load{
Method imp = class_getInstanceMethod([self class], @selector(initWithCoder:));
Method myImp = class_getInstanceMethod([self class], @selector(myInitWithCoder:));
method_exchangeImplementations(imp, myImp);
}

- (id)myInitWithCoder:(NSCoder *)aDecode{

[self myInitWithCoder:aDecode];
if (self) {
// 部分不想改变字体的 把tag值设置成555跳过
if (self.titleLabel.tag != 555) {
CGFloat fontSize = self.titleLabel.font.pointSize;
self.titleLabel.font = [UIFont systemFontOfSize:fontSize * SizeScale];
}
}
return self;
}

UILabel 的处理方式

+ (void)load{
Method imp = class_getInstanceMethod([self class], @selector(initWithCoder:));
Method myImp = class_getInstanceMethod([self class], @selector(myInitWithCoder:));
method_exchangeImplementations(imp, myImp);
}

- (id)myInitWithCoder:(NSCoder *)aDecode{

[self myInitWithCoder:aDecode];
if (self) {
// 部分不想改变字体的 把tag值设置成555跳过
if (self.tag != 555) {
CGFloat fontSize = self.font.pointSize;
self.font = [UIFont systemFontOfSize:fontSize * SizeScale];
}
}
return self;
}



Demo下载地址:https://github.com/xiangxianxiao/XXFontAdaptation