Last active
August 6, 2018 14:21
-
-
Save wszdwp/ebbf548c083713789102ebed034d55a3 to your computer and use it in GitHub Desktop.
Swift 3 code gist
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
| // Delay 2 seconds | |
| DispatchQueue.main.asyncAfter(deadline: .now() + .seconds(2)) { | |
| // Your code with delay | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment