美文网首页
iOS iPhone X适配

iOS iPhone X适配

作者: iOS安年 | 来源:发表于2018-08-20 11:41 被阅读114次

    一. iPhone X

    1.导航栏高度 88 非IPoneX 64
    2.状态栏高度44 非IPoneX 20
    3.tabar高度83 非IPhoneX 49

    二.iPhone X 宏定义

    #define iPhoneX ([[UIScreen mainScreen] bounds].size.width == 375.0f && [[UIScreen mainScreen] bounds].size.height == 812.0f)
    #define StatusBarHeight ([[UIApplication sharedApplication] statusBarFrame].size.height)
    #define NavigationBarHeight 44.0f
    #define StatusBarWithNavigationBarHeight (StatusBarHeight+NavigationBarHeight)
    #define TabBarHeight (iPhoneX ? 83.0f : 49.0f)
    

    相关文章

      网友评论

          本文标题:iOS iPhone X适配

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