Post

Replies

Boosts

Views

Activity

Reply to Application Open URL not firing
Found the solution, I should have managed this in the SceneDelegate. func scene(_ scene: UIScene, openURLContexts URLContexts: Set) { for urlContext in URLContexts { let url = urlContext.url print("Handle URL: (url)") } } func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { for urlContext in connectionOptions.urlContexts { let url = urlContext.url print("Handle URL: (url)") } } Warm regards, Emile
Dec ’23