Opening a URL-Specified Resource

suggest change

Asks the delegate to open a resource specified by a URL, and provides a dictionary of launch options.

Example of usage:

func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool {
        return SomeManager.shared.handle(
            url,
            sourceApplication: options[.sourceApplication] as? String,
            annotation: options[.annotation]
        )
    }

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents