nalexn / clean-architecture-swiftui

SwiftUI sample app using Clean Architecture. Examples of working with CoreData persistence, networking, dependency injection, unit testing, and more.
MIT License
5.56k stars 671 forks source link

Deeplink first run App #58

Closed Rofl113 closed 3 years ago

Rofl113 commented 3 years ago

Add to file SceneDelegate:

func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
  // ...
  // Check Url
  if connectionOptions.urlContext.isEmpty == false {
    systemEventsHandler?.sceneOpenURLContexts(connectionOptions.urlContext)
  }
}
nalexn commented 3 years ago

I've added that, thanks!