iOS Swift - Navigation
What is wrong with this AppDelegate method for deep linking?
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any]) -> Bool {
if url.scheme == "myapp" {
handleURL(url)
return true
}
return false
}
