iOS 关于字体根据不同屏幕尺寸等比适配的问题

时间:2023-02-05 22:32:22

在项目中,美工给的图都是6p,字体也是按照6p的尺寸给的,我是使用代码设置的字体,在5,6上面字体都可以接受,但是在4s设备上面就惨不忍睹了,而且设置字体的位置太多,如果一个个去修改的话,这样大量没有技术含量的事真是让人崩溃
解决方法新建一个UIFont的category 重写 systemFontOfSize 方法
代码如下
UIFont+MyFont.h

import@interface UIFont (MyFont)

+(UIFont *)systemFontOfSize:(CGFloat)fontSize;

@end
UIFont+MyFont.m

import “UIFont+MyFont.h”

define kScreenHeight [[UIScreen mainScreen] bounds].size.height

@implementation UIFont (MyFont)

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

//我是根据屏幕尺寸判断的设备,然后字体设置为0.8倍

if (kScreenHeight < 568) {

fontSize = fontSize * 0.8;

}

UIFont *newFont = [ UIFont preferredFontForTextStyle : UIFontTextStyleBody ];

UIFontDescriptor *ctfFont = newFont.fontDescriptor ;

NSString *fontString = [ctfFont objectForKey : @”NSFontNameAttribute”];

//使用 fontWithName 设置字体

return [UIFont fontWithName:fontString size:fontSize];

}

@end

文/x_JANG(简书作者)
原文链接:http://www.jianshu.com/p/1e5db7d2ae6b
著作权归作者所有,转载请联系作者获得授权,并标注“简书作者”。