iOS Xib 适配字体

很多时候我们会使用Xib开发界面,如果是Xib创建的,我们再去每个控件都重新都设置一遍字体,岂不是无端增加工作量,最好的办法是在XIB里面设置字体大小后自动进行等比缩放。

我的思路是这样的,通过Xib创建的视图在初始化的时候都会调用awakeFromNib方法,通过交换方法,实现为Xib适配字体。

+ (void)load {
    Method swizeeMethod = class_getInstanceMethod([UILabel class], @selector(d_awakeFromNib));
    Method originalMethod = class_getInstanceMethod([UILabel class], @selector(awakeFromNib));
    
    if (!class_addMethod([UILabel class], @selector(awakeFromNib), method_getImplementation(swizeeMethod), method_getTypeEncoding(swizeeMethod))) {
        
        method_exchangeImplementations(originalMethod,swizeeMethod);
    } else {
        class_replaceMethod(self, @selector(d_awakeFromNib), method_getImplementation(originalMethod), method_getTypeEncoding(originalMethod));
    }
}
- (void)d_awakeFromNib {
    self.font = [UIFont fontWithDescriptor:self.font.fontDescriptor size:self.font.pointSize * [self getScaleFontSize]];
    
    [self d_awakeFromNib];
}
+ (CGFloat)getScaleFontSize{
    // 375 是设计师一般都习惯以iphone6设计UI
    CGFloat width = [[UIScreen mainScreen] currentMode].size.width;
  // 1242是iPhone XS Max的宽度,如果不加限制在iPad字体惨不忍睹,大于iPhone XS Max 的都适配1.5倍
    if (width <= 1242) {
         return  [UIScreen mainScreen].bounds.size.width/375;
    }
    else{
        return 1.5;
    }
}

demo

你可能感兴趣的:(iOS Xib 适配字体)