GCD获取队列名称/标签
如何获取当前队列名称?
我的意思是像 com.example.myqueue
这样的队列标签。
在 Xcode 4 调试器中,我只能看到 _block_invoke_1
。
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
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
dispatch_queue_get_label
?How about
dispatch_queue_get_label
?在 Objective-C 中,您可以使用以下命令记录当前队列的标签:
在 Swift (2.0) 中:
In Objective-C you can log the label of the current queue with:
In Swift (2.0):