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
- Equatable
- SwiftGen
- toyproject
- pubspec.yaml
- Widget
- it
- dart
- Extentsion
- listview
- xcode
- swiftlint
- OSLog
- UIAccessibility
- Swift
- Leetcode
- keyWindow
- enumerations
- COMMIT
- flutter
- pubspec
- IOS
- algorithm
- protocol
- ToDoRim
- reetcode
- designPattern
- basic
- GIT
- github
- tip
Archives
- Today
- Total
수니의 개발새발
[iOS/Swift] iOS13에서 keyWindow 경고 해결 본문
728x90
반응형
iOS13에서 가장 앞 쪽에 배치된 윈도우를 구하는 keyWindow가 deprecated 되었습니다.
'keyWindow' was deprecated in iOS 13.0: Should not be used for applications that support multiple scenes as it returns a key window across all connected scenes
📌 이번 글은
iOS 13에서 keyWindow 경고를 해결하는 Extension 소스입니다.
UIApplication+Exntension.swift
import UIKit
extension UIApplication {
/**
# keyWindowInConnectedScenes
- Note: iOS 13 keyWindow 경고 해결
*/
var keyWindowInConnectedScenes: UIWindow? {
if #available(iOS 13.0, *) {
return UIApplication.shared.windows.filter { $0.isKeyWindow }.first
} else {
return UIApplication.shared.keyWindow
}
}
}
keyWindow가 필요한 곳에 아래와 같이 호출하면 됩니다.
UIApplication.shared.keyWindowInConnectedScenes
👩🏻💻 사용 예제
현재 디바이스의 safeAreaTopInset 값을 반환하는 예제입니다.
/**
# safeAreaTopInset
- Note: 현재 디바이스의 safeAreaTopInset값 반환
*/
static func safeAreaTopInset() -> CGFloat {
if #available(iOS 11.0, *) {
let window = UIApplication.shared.keyWindowInConnectedScenes
let topPadding = window?.safeAreaInsets.top
return topPadding ?? Utils.STATUS_HEIGHT
} else {
return Utils.STATUS_HEIGHT
}
}
728x90
반응형
'iOS - Swift' 카테고리의 다른 글
[iOS/Swift/Basic] 주석과 퀵헬프(Quick Help) (0) | 2024.01.05 |
---|---|
[iOS/Swift] iOS13에서 statusBarFrame 경고 해결 (0) | 2024.01.01 |
[iOS/Swift] Keychain으로 안전하게 데이터 저장/반환/삭제하기 (pod 'SwiftKeychainWrapper') (0) | 2022.06.10 |
[iOS/Swift] UserDefaults 반환/저장하기 (feat. 자동 로그인 여부 저장) (0) | 2022.06.09 |
[iOS/Swift] OSLog (with. extension) (0) | 2022.04.07 |
Comments