前言
在ios开发中,有些公司对字体也有适配要求,为了让字体美观,所以在不同尺寸的屏幕上字体大小也要做到适配。
自己总结了几种方法供大家参考,下面话不多说了,来一起看看详细的介绍吧
方法如下:
方法一:用宏定义适配字体大小(根据屏幕尺寸判断)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//宏定义 #define screen_width ([uiscreen mainscreen].bounds.size.width) #define font_size(size) ([uifont systemfontofsize:fontsize(size)) /** * 字体适配 我在pch文件定义了一个方法 */ static inline cgfloat fontsize(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尺寸时大小一样,也可根据需求自定义比例。
代码如下:
1
2
3
4
|
#define isiphone6p screen_width==414 #define sizescale (isiphone6p ? 1.5 : 1) #define kfontsize(value) value*sizescale #define kfont(value) [uifont systemfontofsize:value*sizescale] |
方法三:(利用runtime给uifont写分类 替换系统自带的方法)推荐使用这种
class_getinstancemethod得到类的实例方法
class_getclassmethod得到类的类方法
1. 首先需要创建一个uifont的分类
2. 自己ui设计原型图的手机尺寸宽度
1
|
#define myuiscreen 375 // ui设计原型图的手机尺寸宽度(6), 6p的--414 |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
uifont+runtime.m #import "uifont+runtime.h" #import <objc/runtime.h> @implementation uifont (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 |
外部正常调用系统设置字体方法就行
1
2
3
4
5
|
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]; |
注意:
load方法只会走一次,利用runtime的method进行方法的替换
替换的方法里面(把系统的方法替换成我们自己写的方法),这里要记住写自己的方法,不然会死循环
之后凡是用到systemfontofsize方法的地方,都会被替换成我们自己的方法,即可改字体大小了
注意:此方法只能替换 纯代码 写的控件字号,如果你用xib创建的控件且在xib里面设置的字号,那么替换不了!你需要在xib的
awakefromnib方法里面手动设置下控件字体
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。
原文链接:https://www.jianshu.com/p/7a6106f952d3