iphone-dev:中止dispatch_queue

时间:2012-03-23 11:49:02

标签: objective-c ios queue

  

可能重复:
  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");

谢谢:)

1 个答案:

答案 0 :(得分:-1)

没有api可以取消队列..您可以参考这个答案了解更多详情.. https://stackoverflow.com/a/1551056/919545