Created
December 3, 2018 12:33
-
-
Save candostdagdeviren/0ff1f47d5c8ef7c7547c0d3e8b6e5bf6 to your computer and use it in GitHub Desktop.
Swift Post Testability Example Code
This file contains 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
class FileOpener { | |
func open(identifier: String) { | |
guard let url = URL(string: "iosappscheme://open?id=\(identifier)") else { | |
debugPrint("Failed to convert URL") | |
return | |
} | |
if UIApplication.shared.canOpenURL(url) { | |
UIApplication.shared.open(url, options: [:], completionHandler: nil) | |
} else { | |
debugPrint("Failed to open URL") | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment