-
Notifications
You must be signed in to change notification settings - Fork 472
Asynchronous Queues
Charlie Hieger edited this page Nov 30, 2016
·
1 revision
For time consuming tasks such as network calls and reading / writing to disk, it is often a good idea to execute these tasks on a background thread. This allows the task to be handled asynchronously and not block the main thread from handling necessary UI updates.
DispatchQueue.global().async {
// Code to be executed in asynchronously in the background
}
When a task on an asynchronous background thread has completed and has returned data you want to use, it is a good idea to explicitly execute that code back on the main thread. An example of this might be when you have retrieved data back asynchronously from a network call and now want to represent that data in a UI element, such as setting a label's text.
DispatchQueue.main.async {
// Code to be executed on the main thread
}