9.0 Released! → Native ESM runtimes 🚀, Vite support ⚡️, multi-window apps and more...
Read Announcement

Defined in: application/application-interfaces.ts

iOS Event data containing information for scene lifecycle events (iOS 13+).

Extends

Properties

android?

ts
optional android?: any;

Defined in: application/application-interfaces.ts

Gets the native Android event arguments. Valid only when running on Android.

Inherited from

ApplicationEventData.android


connectionOptions?

ts
optional connectionOptions?: UISceneConnectionOptions;

Defined in: application/application-interfaces.ts

Scene connection options (for sceneWillConnect event).


eventName

ts
eventName: string;

Defined in: application/application-interfaces.ts

The name of the event.

Inherited from

ApplicationEventData.eventName


ios?

ts
optional ios?: any;

Defined in: application/application-interfaces.ts

Gets the native iOS event arguments. Valid only when running on iOS.

Inherited from

ApplicationEventData.ios


object

ts
object: any;

Defined in: application/application-interfaces.ts

The instance that has raised the event.

Inherited from

ApplicationEventData.object


scene?

ts
optional scene?: UIWindowScene;

Defined in: application/application-interfaces.ts

The UIWindowScene instance associated with this event.


userInfo?

ts
optional userInfo?: NSDictionary<any, any>;

Defined in: application/application-interfaces.ts

Additional user info from the notification.


window?

ts
optional window?: UIWindow;

Defined in: application/application-interfaces.ts

The UIWindow associated with this scene (if applicable).