Notice
Recent Posts
Recent Comments
Link
clyne의 개발 기록
[Swift] Top Notch, Bottom Notch 높이 구하기 (iPhoneX 이상 노치 ) 본문
안녕하세요.
iOS 개발자 CNOO 입니다!
오늘은 간단하게, 아이폰의 Top Notch 및 Bottom Notch의 높이를 구하는 코드를 작성해보도록 하겠습니다.
노치란??
static func bottomNotchHeight() -> CGFloat {
if #available(iOS 11.0, tvOS 11.0, *) {
return UIApplication.shared.delegate?.window??.safeAreaInsets.bottom ?? 0
}
return 0
}
static func TopNotchHeight() -> CGFloat {
if #available(iOS 11.0, tvOS 11.0, *) {
return UIApplication.shared.delegate?.window??.safeAreaInsets.top ?? 0
}
return 0
}
'iOS > Swift' 카테고리의 다른 글
[Swift] UILabel내 text의 세로, 가로길이 구하기 (0) | 2021.05.11 |
---|---|
[Swift] UIAlertController에 이미지 넣기 (커스텀) (0) | 2021.05.05 |
[Swift] Shadow (그림자) 효과 넣기 (0) | 2021.05.04 |
[Swift] iOS에서 Visibility GONE 하기 (0) | 2021.05.03 |
[Swift] 회전 애니메이션 (180도, 90도, 45도, 반시계방향) (0) | 2021.05.02 |