- (CGFloat)safetyAreaHeight {
if (@available(iOS 11.0, *)) {
UIEdgeInsets edgeInsets = [UIApplication sharedApplication].windows[0].safeAreaInsets;
if (edgeInsets.top != 0 && edgeInsets.bottom != 0) {
CGFloat height = [UIApplication sharedApplication].windows.firstObject.safeAreaInsets.top;
return height;
}else{
return 20;
}
} else {
return 20;
}
return 20;
}
NON-Notch - 20px
pro가 45
mini가 50으로 영역이 더 큼. 참고
'Programing' 카테고리의 다른 글
[SWIFT] SceneDelegate 없이 AppDelegate로 프로젝트 구현 (0) | 2023.07.10 |
---|---|
AWS/Ubuntu EC2 셋팅 (0) | 2023.06.30 |
[iOS] WKWebview User Agent 설정 (0) | 2022.02.18 |
[iOS] klip sdk 적용이슈 (0) | 2022.02.09 |
CRUL 관련 (0) | 2021.12.02 |