I'm converting my iOS13 app for iPadOS to SceneDelegate (multi window).
How can I get the current UIWindow from the current SceneDelegate?
I know that a can access the current scene using UIView.window
or UIViewController.view.window
, but I have a non UI class (AppDelegate) where I need to get the window (keyWindow until iOS12) to show a snack bar on top of everything.
I used to do [UIApplication sharedApplication].keyWindow
but now, of course, that's wrong.