Hi
How do I detect my app being launched via notification when using SceneDelegates and storyboards. I saw various answers like looking at
func application( application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool
but not getting anything in launchOptions
Also I added code in the following method but it's not getting called and I read that when using storyboard this method isn't called
func scene( scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions)
Thanks
Guy
How do I detect my app being launched via notification when using SceneDelegates and storyboards. I saw various answers like looking at
func application( application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool
but not getting anything in launchOptions
Also I added code in the following method but it's not getting called and I read that when using storyboard this method isn't called
func scene( scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions)
Thanks
Guy