-
[IOS/swift] windows was deprecated in IOS 15.0 경고 대응IOS 2023. 3. 9. 17:13
'windows' was deprecated in iOS 15.0: Use UIWindowScene.windows on a relevant window scene instead
IOS 15.0 에서 windows 가 deprecated 되면서 connectedScenes 를 통해 현재 첫번째 window를 받아 와야한다.
[AS-IS]
UIApplication.shared.windows.first?.safeAreaInsets.bottom
[TO-BE]
let scenes = UIApplication.shared.connectedScenes let windowScene = scenes.first as? UIWindowScene let window = windowScene?.windows.first let safeAreaBottomSize = UIApplication.shared.windows.first?.safeAreaInsets.bottom
'IOS' 카테고리의 다른 글
IOS 개발 언어들의 간략한 역사 (Objective-C, Swift, SwiftUI) (0) 2023.07.15