Created
August 26, 2017 18:17
-
-
Save pgpt10/4e5b61267a6f131e6704c02b1d3cd294 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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