iOS字体大小适配的几种方法

方法一:用宏定义适配字体大小(根据屏幕尺寸判断)

//宏定义

#define SCREEN_WIDTH ([UIScreen mainScreen].bounds.size.width)

#define FONT_SIZE(size) ([UIFont systemFontOfSize:FontSize(size))

/**

*  字体适配 我在PCH文件定义了一个方法

*/

staticinlineCGFloatFontSize(CGFloat fontSize){

    if (SCREEN_WIDTH==320) {

        return fontSize-2;

    }else if (SCREEN_WIDTH==375){

        return fontSize;

    }else{

        return fontSize+2;

    }

}

方法二:用宏定义适配字体大小(根据屏幕尺寸判断)

1.5代表6P尺寸的时候字体为1.5倍,5S和6尺寸时大小一样,也可根据需求自定义比例

#defineIsIphone6P          SCREEN_WIDTH==414

#defineSizeScale           (IsIphone6P ? 1.5 : 1)

#definekFontSize(value)    value*SizeScale

#definekFont(value)        [UIFont systemFontOfSize:value*SizeScale]

方法三:(利用runTime给UIFont写分类 替换系统自带的方法)推荐使用这种

class_getInstanceMethod得到类的实例方法

class_getClassMethod得到类的类方法

首先需要创建一个UIFont的分类

自己UI设计原型图的手机尺寸宽度

#define MyUIScreen  375 // UI设计原型图的手机尺寸宽度(6), 6p的--414

UIFont+runtime.m

#import"UIFont+runtime.h"

#import

@implementationUIFont(runtime)

+ (void)load {

// 获取替换后的类方法

Method newMethod = class_getClassMethod([self class],@selector(adjustFont:));

// 获取替换前的类方法

Method method = class_getClassMethod([self class],@selector(systemFontOfSize:));

// 然后交换类方法,交换两个方法的IMP指针,(IMP代表了方法的具体的实现)

method_exchangeImplementations(newMethod, method);

}

+ (UIFont*)adjustFont:(CGFloat)fontSize {

UIFont*newFont =nil;

newFont = [UIFont adjustFont:fontSize * [UIScreen mainScreen].bounds.size.width/MyUIScreen];

return newFont;

}

@end

外部正常调用系统设置字体方法就行

Controller类中正常调用就行了:

UILabel*label = [[UILabel alloc] initWithFrame:CGRectMake(0,150, [UIScreen mainScreen].bounds.size.width,60)];

label.text =@"iOS字体大小适配";

label.font = [UIFont systemFontOfSize:16];

[self.view addSubview:label];

你可能感兴趣的:(iOS字体大小适配的几种方法)