可能重复:
Dispatch queues: How to tell if they're running and how to stop them
有没有办法停止/中止特定队列?如果我创建的队列是:
dispatch_queue_t queue;
queue = dispatch_queue_create("com.example.MyQueue", NULL);
我可以以某种方式中止此队列,例如按钮点击吗?所以基本上我想要这个:
dispatch_queue_abort("com.example.MyQueue");
谢谢:)