FDUIDefine.h 610 B

1234567891011121314151617181920
  1. //
  2. // FDUIDefine.h
  3. // FDUIKitObjC
  4. //
  5. // Created by fandongtongxue on 2020/2/26.
  6. //
  7. #ifndef FDUIDefine_h
  8. #define FDUIDefine_h
  9. #define FD_ScreenWidth [UIScreen mainScreen].bounds.size.width
  10. #define FD_ScreenHeight [UIScreen mainScreen].bounds.size.height
  11. #define FD_StatusBar_Height [UIApplication sharedApplication].statusBarFrame.size.height
  12. #define FD_Navigation_Height 44
  13. #define FD_Bottom_Height (FD_StatusBar_Height > 20.0 ? 83 : 49)
  14. #define FD_Bottom_SafeArea_Height (FD_StatusBar_Height > 20.0 ? 34 : 0)
  15. #define FD_Top_Height (FD_StatusBar_Height + FD_Navigation_Height)
  16. #endif /* FDUIDefine_h */