How can I get the current queue name?
I mean queue label like com.example.myqueue
.
In the Xcode 4 debugger I can see just _block_invoke_1
.
How about dispatch_queue_get_label
?
In Objective-C you can log the label of the current queue with:
NSLog(@"%s", dispatch_queue_get_label(DISPATCH_CURRENT_QUEUE_LABEL));
In Swift (2.0):
print(String(UTF8String: dispatch_queue_get_label(DISPATCH_CURRENT_QUEUE_LABEL))!)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With