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
inSceneThe scene we’re connecting.
willConnectToThe session we’re connecting to (ignored).
optionsThe connection options (ignored).
-
Called when the app has been backgrounded.
Declaration
Swift
@MainActor func sceneDidEnterBackground(_ inScene: UIScene)Parameters
inSceneThe 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
inSceneThe scene that’s entering the background (ignored).
inURLContextsThe URL context.
-
Called when the app is coming to the fore.
Declaration
Swift
@MainActor func sceneWillEnterForeground(_ inScene: UIScene)Parameters
inSceneThe scene that’s entering the foreground (ignored).
View on GitHub