Among other ways, there are two ways to get queues in a GCD :
dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); dispatch_get_main_queue();
If I'm not completely mistaken, the "main queue" is executed in the main thread and is good for callback blocks that do the work of the user interface.
Does this mean that the "global queue" is the one that runs on the background thread?
ios concurrency iphone grand-central-dispatch
Proud Member Mar 07 2018-12-12T00: 00Z
source share