RiValT_SceneDelegate
@MainActor
class RiValT_SceneDelegate : UIResponder, UIWindowSceneDelegate
This is the scene delegate for the main app.
-
Accessor for this instance
Declaration
Swift
@MainActor static var sceneDelegateInstance: RiValT_SceneDelegate?
-
The required window property.
Declaration
Swift
@MainActor var window: UIWindow?
-
Declaration
Swift
@MainActor func scene(_ inScene: UIScene, willConnectTo: UISceneSession, options: UIScene.ConnectionOptions)
Parameters
inScene
The scene we’re connecting.
willConnectTo
The session we’re connecting to (ignored).
options
The connection options (ignored).
-
Called when the app has been backgrounded.
Declaration
Swift
@MainActor func sceneDidEnterBackground(_ inScene: UIScene)
Parameters
inScene
The scene that’s entering the background (ignored).
-
Called when the app has been launched from a URL scheme.
Declaration
Swift
@MainActor func scene(_ inScene: UIScene, openURLContexts inURLContexts: Set<UIOpenURLContext>)
Parameters
inScene
The scene that’s entering the background (ignored).
inURLContexts
The URL context.
-
Called when the app is coming to the fore.
Declaration
Swift
@MainActor func sceneWillEnterForeground(_ inScene: UIScene)
Parameters
inScene
The scene that’s entering the foreground (ignored).