ios11 适配需要的一些宏定义

// 适配 iPhone X
#define kSCREEN_WIDTH          ([UIScreen mainScreen].bounds.size.width)
#define kSCREEN_HEIGHT         ([UIScreen mainScreen].bounds.size.height)

#define isIPhoneX     (kSCREEN_WIDTH == 375.f && kSCREEN_HEIGHT == 812.f)
//导航栏高度
#define  MANavBarHeight  isIPhoneX ? 88 : 64
//底部Tabbar 高度
#define MATabBarHeight  isIPhoneX ? 83 : 49
//状态栏高度
#define  MAStatusBarHeight  isIPhoneX ? 44 : 20

你可能感兴趣的:(ios11 适配需要的一些宏定义)