iPhone X:
StatusBar 高44px(原先为20px),NavigationBar 高44px,底部TabBar高83px(原先为49)
快速适配宏
#define kStatusBarHeight [[UIApplication sharedApplication] statusBarFrame].size.height
#define NavBarHeight (kStatusBarHeight + 44)
#define TabBarHeight (kStatusBarHeight > 20 ? 83 : 49)
原文:http://www.cnblogs.com/xsiOS/p/7683400.html