iOS 安全区域适配
Posted 伊米伊念
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 安全区域适配相关的知识,希望对你有一定的参考价值。
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 安全区域适配的主要内容,如果未能解决你的问题,请参考以下文章