Event
public enum Event
Encapsulates changes to the visibility and key status of the window.
-
The window has become hidden.
Declaration
Swift
case didBecomeHidden(UIWindow)
-
The window has become the key window.
Declaration
Swift
case didBecomeKey(UIWindow)
-
The window has become visible.
Declaration
Swift
case didBecomeVisible(UIWindow)
-
The window has resigned its status as key window.
Declaration
Swift
case didResignKey(UIWindow)