Skip to content

Instantly share code, notes, and snippets.

@vvit
Last active November 22, 2017 21:37
Show Gist options
  • Save vvit/9972637 to your computer and use it in GitHub Desktop.
Save vvit/9972637 to your computer and use it in GitHub Desktop.
DispatchQueue.global(qos: .userInitiated).async { [unowned self] in
...
DispatchQueue.main.async { [unowned self] in
...
}
}
// Delay execution of the block
DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment