Skip to content

Instantly share code, notes, and snippets.

@BrettBukowski
Created November 30, 2016 20:28
Show Gist options
  • Save BrettBukowski/1325bc24ae163106c472d4c1c636d9c3 to your computer and use it in GitHub Desktop.
Save BrettBukowski/1325bc24ae163106c472d4c1c636d9c3 to your computer and use it in GitHub Desktop.
async delay - swift 3
let delayInSeconds = 2.0
DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + delayInSeconds) {
// Code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment