Interfaces
SceneOpenURLContextsEventData
iOS event data for the `sceneOpenURLContexts` event, raised when a scene is asked to open URLs. Replaces the `applicationOpenURLOptions` app delegate callbac...
Defined in: application/application-interfaces.ts
iOS event data for the sceneOpenURLContexts event, raised when a scene is asked to open URLs.
Replaces the applicationOpenURLOptions app delegate callback, which UIKit no longer calls once the app adopts scenes. Handlers registered through Application.ios.addDelegateHandler('applicationOpenURLOptions', ...) still run, once per context.
Extends
Properties
android?
optional android?: any;Defined in: application/application-interfaces.ts
Gets the native Android event arguments. Valid only when running on Android.
Inherited from
connectionOptions?
optional connectionOptions?: UISceneConnectionOptions;Defined in: application/application-interfaces.ts
Scene connection options (for sceneWillConnect event).
Inherited from
SceneEventData.connectionOptions
eventName
eventName: string;Defined in: application/application-interfaces.ts
The name of the event.
Inherited from
ios?
optional ios?: any;Defined in: application/application-interfaces.ts
Gets the native iOS event arguments. Valid only when running on iOS.
Inherited from
object
object: any;Defined in: application/application-interfaces.ts
The instance that has raised the event.
Inherited from
scene?
optional scene?: UIWindowScene;Defined in: application/application-interfaces.ts
The UIWindowScene instance associated with this event.
Inherited from
uiWindow?
optional uiWindow?: UIWindow;Defined in: application/application-interfaces.ts
The UIWindow associated with this scene (if applicable).
Inherited from
urlContexts
urlContexts: NSSet<UIOpenURLContext>;Defined in: application/application-interfaces.ts
The URL contexts to open. A single delivery may carry more than one URL.
userInfo?
optional userInfo?: NSDictionary<any, any>;Defined in: application/application-interfaces.ts
Additional user info from the notification.
Inherited from
window?
optional window?: NativeWindow;Defined in: application/application-interfaces.ts
The NativeWindow the scene belongs to, when one is registered for it.
Inherited from
- Previous
- SceneEventData