码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 安全区域适配

时间:2019-01-28 12:03:12      阅读:445      评论:0      收藏:0      [点我收藏+]

标签:ica   bsp   nslog   else   shared   oat   maker   out   div   

    CGRect rectStatus = [[UIApplication sharedApplication] statusBarFrame];
    CGFloat rectStatusHeight = rectStatus.size.height;
    NSLog(@"status width - %f", rectStatus.size.width); // 宽度
    NSLog(@"status height - %f", rectStatus.size.height);  // 高度
    [rootView mas_makeConstraints:^(MASConstraintMaker *make) {
        if (@available(iOS 11.0, *)) {
            make.left.equalTo(self.view.mas_safeAreaLayoutGuideLeft);
            make.right.equalTo(self.view.mas_safeAreaLayoutGuideRight);
            make.top.equalTo(self.view.mas_safeAreaLayoutGuideTop);
            make.bottom.equalTo(self.view.mas_safeAreaLayoutGuideBottom);
        } else {
            make.top.equalTo(@(rectStatusHeight));
            make.left.right.bottom.equalTo(0);
        }
    }];

 

iOS 安全区域适配

标签:ica   bsp   nslog   else   shared   oat   maker   out   div   

原文地址:https://www.cnblogs.com/sunyaxue/p/10329315.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!