Skip to content

Instantly share code, notes, and snippets.

@0xSG
Created October 17, 2020 14:24
Show Gist options
  • Save 0xSG/91e7cc198c92bce7396139bdf9649927 to your computer and use it in GitHub Desktop.
Save 0xSG/91e7cc198c92bce7396139bdf9649927 to your computer and use it in GitHub Desktop.
Background execution of statements swift 4
let dispatchQueue = DispatchQueue(label: "<#background process id#>", qos: .background)
dispatchQueue.async{
<#statements#>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment