Skip to content

Instantly share code, notes, and snippets.

@KrisRJack
Last active January 2, 2021 16:14
Show Gist options
  • Save KrisRJack/5eb6cdd6ce7e1eb02167d2ef8e9f6961 to your computer and use it in GitHub Desktop.
Save KrisRJack/5eb6cdd6ce7e1eb02167d2ef8e9f6961 to your computer and use it in GitHub Desktop.
Application Visible Window
//
// Window.swift
// Created by Kristopher Jackson.
//
import UIKit
let window = UIApplication.shared.connectedScenes
.filter({$0.activationState == .foregroundActive})
.map({$0 as? UIWindowScene})
.compactMap({$0})
.first?.windows
.filter({$0.isKeyWindow}).first
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment