반응형

KeyWindow 가져오기 위해 사용하던 코드들이 iOS 버젼에 따라 deprecated 됨에 따라서
편하기 사용하기 위한 keyWindow 가져오기 Extension

extension UIApplication {
    var keyWindow: UIWindow? {
        connectedScenes.filter { $0.activationState == .foregroundActive }.compactMap { $0 as? UIWindowScene }.first?.windows.first { $0.isKeyWindow }
    }
}

// how to use
UIApplication.shared.keyWindow?.safeAreaInsets

 

 

반응형
Posted by 까칠코더
,