Skip to content

Instantly share code, notes, and snippets.

@fdocr
Created September 3, 2016 01:10
Show Gist options
  • Save fdocr/a2553d6700215bce42623284e6cc8cc4 to your computer and use it in GitHub Desktop.
Save fdocr/a2553d6700215bce42623284e6cc8cc4 to your computer and use it in GitHub Desktop.
Delay function in ms
// Delay function expressed in ms
func delay(delay:Double, closure:()->()) {
dispatch_after(
dispatch_time(
DISPATCH_TIME_NOW,
Int64(delay * 1000000.0)
),
dispatch_get_main_queue(), closure)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment