SkeleWindowSceneDelegate

The UIKit scene delegate SkeleKit registers; it builds the app's window and shell.
[Register(nameof(SkeleWindowSceneDelegate))] public class SkeleWindowSceneDelegate : UIWindowSceneDelegate

Properties

Window

The window attached to the active UIKit scene.

Type: UIWindow?

public override UIWindow? Window { get; set; }

Methods

DidEnterBackground

Notifies the application that its scene entered the background.

public override void DidEnterBackground(
  UIScene scene)
ParameterSummary
UIScene sceneThe scene entering the background.

WillConnect

Connects a UIKit scene to the SkeleKit window and application shell.

public override void WillConnect(
  UIScene scene,
  UISceneSession session,
  UISceneConnectionOptions connectionOptions)
ParameterSummary
UIScene sceneThe scene being connected.
UISceneSession sessionThe session associated with the scene.
UISceneConnectionOptions connectionOptionsThe options supplied while connecting the scene.

WillEnterForeground

Notifies the application that its scene will enter the foreground.

public override void WillEnterForeground(
  UIScene scene)
ParameterSummary
UIScene sceneThe scene entering the foreground.