mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
Handle deep links.
This commit is contained in:
parent
d1cf45c6a1
commit
fb42b80276
@ -19,4 +19,11 @@ final class AppDelegate: UIResponder, UIApplicationDelegate {
|
|||||||
#endif
|
#endif
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
|
||||||
|
if url.scheme == "yattee" {
|
||||||
|
OpenURLHandler.handle(url)
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user