美文网首页
适配iPhone刘海屏必备

适配iPhone刘海屏必备

作者: 米匠 | 来源:发表于2020-09-17 20:05 被阅读0次

    欢迎来怼👏

    + (CGFloat)screenTopMargin {
        if (@available(iOS 11.0, *)) {
            return [UIApplication sharedApplication].keyWindow.safeAreaInsets.top;
        } else {
            return [[UIApplication sharedApplication] statusBarFrame].size.height;
        }
    }
    
    + (CGFloat)screenBottomMargin {
        if (@available(iOS 11.0, *)) {
            return [UIApplication sharedApplication].keyWindow.safeAreaInsets.bottom;
        } else {
            return 0.0;
        }
    }
    

    相关文章

      网友评论

          本文标题:适配iPhone刘海屏必备

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