注:寬高比 根據公司設計給的蘋果幾的尺寸,比如下面6 尺寸
// 獲取寬度比例
define kScreenWidthRatio (kScreenWidth / 375)
// 獲取高度比例
define kScreenHeightRatio (kScreenHeight / 667)
// 適配寬度
define kAdaptedWidth(width) (ceilf((width) * kScreenWidthRatio))
// 適配高度
define kAdaptedHeight(height) (ceilf((height) * kScreenHeightRatio))
// 適配字體