I would like to know if there is a way in Objective-C to get a thread by its name or label?
dispatch_queue_t newQueue = dispatch_queue_create(@"NameOfTheQueue", NULL);
This creates the queue. So, in another module, is there a way to get that queue?
Something like:
dispath_queue_t theQueue = dispatch_find_queue_by_name(@"Name...");