mirror of
https://github.com/yattee/yattee.git
synced 2024-12-22 13:33:42 +00:00
Handle deep links.
This commit is contained in:
parent
d1cf45c6a1
commit
fb42b80276
@ -19,4 +19,11 @@ final class AppDelegate: UIResponder, UIApplicationDelegate {
|
||||
#endif
|
||||
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