Last active
April 5, 2021 05:11
-
-
Save LovaRK/d9878dafd32ac966bec04e502e609c29 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension UIApplication { | |
var currentWindow: UIWindow? { | |
connectedScenes | |
.filter({$0.activationState == .foregroundActive}) | |
.map({$0 as? UIWindowScene}) | |
.compactMap({$0}) | |
.first?.windows | |
.filter({$0.isKeyWindow}).first | |
} | |
} | |
// How to use | |
if let window = UIApplication.shared.currentWindow { | |
// do whatever you want with window | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment