美文网首页
iOS屏幕相关宏

iOS屏幕相关宏

作者: 半夏半暖半倾城灬 | 来源:发表于2018-10-31 16:02 被阅读0次

//获得屏幕的宽高

#define kScreenWidth ([UIScreen mainScreen].bounds.size.width)

#define kScreenHeight ([UIScreen mainScreen].bounds.size.height)

//iPhoneX / iPhoneXS

#define isIphoneX_XS (kScreenWidth == 375.f && kScreenHeight == 812.f ? YES : NO)

//iPhoneXR / iPhoneXSMax

#define isIphoneXR_XSMax (kScreenWidth == 414.f && kScreenHeight == 896.f ? YES : NO)

//异性全面屏

#define isFullScreen (isIphoneX_XS || isIphoneXR_XSMax)

// Status bar height.

#define StatusBarHeight (isFullScreen ? 44.f : 20.f)

// Navigation bar height.

#define NavigationBarHeight 44.f

// Tabbar height.

#define TabbarHeight (isFullScreen ? (49.f+34.f) : 49.f)

// Tabbar safe bottom margin.

#define TabbarSafeBottomMargin (isFullScreen ? 34.f : 0.f)

// Status bar & navigation bar height.

#define StatusBarAndNavigationBarHeight (isFullScreen ? 88.f : 64.f)

判断是不是异性全面屏幕

#define isFullScreen (isIphoneX_XS || isIphoneXR_XSMax)

---------------------

作者:st646889325

来源:CSDN

原文:https://blog.csdn.net/st646889325/article/details/82992599

版权声明:本文为博主原创文章,转载请附上博文链接!

相关文章

网友评论

      本文标题:iOS屏幕相关宏

      本文链接:https://www.haomeiwen.com/subject/vgmatqtx.html