250x250
반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Widget
- tip
- ToDoRim
- UIAccessibility
- swiftlint
- designPattern
- github
- protocol
- OSLog
- toyproject
- xcode
- enumerations
- flutter
- algorithm
- listview
- basic
- GIT
- reetcode
- dart
- it
- Equatable
- Swift
- Leetcode
- pubspec.yaml
- keyWindow
- pubspec
- SwiftGen
- Extentsion
- COMMIT
- IOS
Archives
- Today
- Total
수니의 개발새발
[iOS/Swift] 현재 디바이스 SafeArea의 top/bottom 영역 값 구하기 본문
728x90
반응형
화면을 그리다 보면 노치 영역으로 인해 레이아웃이 깨져 골치 아플 때가 많죠.
그래서 SafeArea Inset값이 디바이스마다 변동되어 자주 필요로 합니다.
📌 이번 글은
현재 디바이스의 SafeArea의 top.bottom 영역 값을 구하는 방법입니다.
SafeArea Top Inset
func safeAreaTopInset() -> CGFloat {
let statusHeight = UIApplication.shared.statusBarFrame.size.height // 상태바 높이
if #available(iOS 11.0, *) {
let window = UIApplication.shared.keyWindow
let topPadding = window?.safeAreaInsets.top
return topPadding ?? statusHeight
} else {
return statusHeight
}
}
Safe Area Top 영역 값을 리턴하는 함수입니다.
노치가 없는 디바이스는 상태바 높이가 top 영역 값입니다.
SafeArea Bottom Inset
func safeAreaBottomInset() -> CGFloat {
if #available(iOS 11.0, *) {
let window = UIApplication.shared.keyWindow
let bottomPadding = window?.safeAreaInsets.bottom
return bottomPadding ?? 0.0
} else {
return 0.0
}
}
Safe Area Bottom 영역 값을 리턴하는 함수입니다.
👩🏻💻 사용 예제
import UIKit
class Utils {
public static let STATUS_HEIGHT = UIApplication.shared.statusBarFrame.size.height // 상태바 높이
/**
# safeAreaTopInset
- Note: 현재 디바이스의 safeAreaTopInset값 반환
*/
static func safeAreaTopInset() -> CGFloat {
if #available(iOS 11.0, *) {
let window = UIApplication.shared.keyWindow
let topPadding = window?.safeAreaInsets.top
return topPadding ?? Utils.STATUS_HEIGHT
} else {
return Utils.STATUS_HEIGHT
}
}
/**
# safeAreaBottomInset
- Note: 현재 디바이스의 safeAreaBottomInset값 반환
*/
static func safeAreaBottomInset() -> CGFloat {
if #available(iOS 11.0, *) {
let window = UIApplication.shared.keyWindow
let bottomPadding = window?.safeAreaInsets.bottom
return bottomPadding ?? 0.0
} else {
return 0.0
}
}
}
공통적으로 사용하는 변수 및 함수들을 Utils라는 공통 클래스를 생성하여 관리하는 예시입니다.
Utils.safeAreaTopInset()
Utils.safeAreaBottomInset()
필요한 곳 어디서든 생성한 함수를 호출하여 사용할 수 있습니다.
728x90
반응형
'iOS - Swift' 카테고리의 다른 글
[iOS/Swift] 디바이스 고유넘버(device uuid) 구하기 (0) | 2021.12.29 |
---|---|
[iOS/Swift] 현재 번들 버전(Bundle Version) 구하기 (0) | 2021.12.29 |
[iOS/Swift] 특정 상황에 VoiceOver 알림 등록하기 (0) | 2021.12.29 |
[iOS/Swift] iOS13 에서 라이트모드(또는 다크모드)만 지원하기 (turn off darkmode) (0) | 2021.12.29 |
[iOS/Swift] Custom Animation Popup 만들기 (with. Storyboard) (0) | 2021.12.29 |
Comments