Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@pgpt10
Created August 26, 2017 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pgpt10/4e5b61267a6f131e6704c02b1d3cd294 to your computer and use it in GitHub Desktop.
Save pgpt10/4e5b61267a6f131e6704c02b1d3cd294 to your computer and use it in GitHub Desktop.
func application(_ application: UIApplication, open url: URL, sourceApplication: String?, annotation: Any) -> Bool
{
if url.scheme == "YOUR_URL_SCHEME"
{
//TODO: Write your code here
}
return true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment