diff --git a/iOS/AppDelegate.swift b/iOS/AppDelegate.swift index e61cafe5..ea7515c3 100644 --- a/iOS/AppDelegate.swift +++ b/iOS/AppDelegate.swift @@ -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 + } }