快速屏幕适配,字体适配

2016-10-29  本文已影响67人  Cz1024

注:宽高比 根据公司设计给的苹果几的尺寸,比如下面6 尺寸

// 获取宽度比例

define kScreenWidthRatio (kScreenWidth / 375)

// 获取高度比例

define kScreenHeightRatio (kScreenHeight / 667)

// 适配宽度

define kAdaptedWidth(width) (ceilf((width) * kScreenWidthRatio))

// 适配高度

define kAdaptedHeight(height) (ceilf((height) * kScreenHeightRatio))

// 适配字体

define SYSTEM_FONT(size) [UIFont systemFontOfSize:(size)]

define kAdaptedFontSize(R) SYSTEM_FONT(kAdaptedWidth(R))

上一篇下一篇

猜你喜欢

热点阅读