Skip to content

Instantly share code, notes, and snippets.

@andresr-dev
Last active June 2, 2023 17:34
Show Gist options
  • Save andresr-dev/c543760b407ff4b48d624fe1985bb770 to your computer and use it in GitHub Desktop.
Save andresr-dev/c543760b407ff4b48d624fe1985bb770 to your computer and use it in GitHub Desktop.
This is how to get the current window in iOS
extension UIApplication {
var window: UIWindow? {
guard
let scene = connectedScenes.first,
let sceneDelegate = scene.delegate as? UIWindowSceneDelegate,
let uiWindow = sceneDelegate.window
else {
return nil
}
return uiWindow
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment