Last active
June 14, 2017 07:06
-
-
Save danielgalasko/bdd363a8c3b530d8bca8 to your computer and use it in GitHub Desktop.
dispatch_after in Swift - A top level function for delaying code execution
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
func delay(delay:Double, closure:()->()) { | |
dispatch_after( | |
dispatch_time( | |
DISPATCH_TIME_NOW, | |
Int64(delay * Double(NSEC_PER_SEC)) | |
), | |
dispatch_get_main_queue(), closure) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment