Closed elland closed 6 years ago
Great if your network request callback does not interact with the UI and you don't want to have it run on the main queue. But also defaulting to the main queue, so you don't have to constantly call DispatchQueue.main.async {} otherwise.
DispatchQueue.main.async {}
This is a small change in LOC but a big structural change. Please be sure we're not missing anything. 👍
Great if your network request callback does not interact with the UI and you don't want to have it run on the main queue. But also defaulting to the main queue, so you don't have to constantly call
DispatchQueue.main.async {}
otherwise.