iOS实现对不同分辨率设备的字号大小适配方法
先说一下 不同机型的长和宽
iPhone4,4s : 320 * 480
iPhone5,5c,5s :320 * 568
iPhone6,6s,7 : 375 * 667
iPhone6plus,7plus :414 * 736
iPad : --
我们以iPhone5为基准 来计算其他设备的字体大小应该是多少?
以在iPhone5字号为12,
iPhone4用iPhone5的字号:12.
iPad 使用 iPhone6plus 的字号
iPhone6 和 iPhone6plus 的字号计算公式是
得到的结果是
iPhone6的字号为 14.077
iPhone6plus的字号为15.537
使用方法
#define IS_IPAD ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) && (SCREEN_WIDTH_NEW > 760 )
#define SCALE_FONT (IS_IPAD ? (15.537/12.0):((SCREEN_WIDTH == 320) ? 1 : ((SCREEN_WIDTH == 375 )? (14.077/12.0) : (15.537/12.0))))
button.titleLabel.font = [UIFont systemFontOfSize:12 * SCALE_FONT];