识别并关闭非活动线程

时间:2014-03-04 09:33:41

标签: ios objective-c xcode multithreading

在我的应用程序(速度陷阱和危险)中,我使用了多种线程:NSOperationdispatch_asyncperformSelectorInBackgroundperformSelectorOnMainThread等等上。

我想做两件事;

  1. 用xcode Debug Navigator中的名字识别踏板。
  2. 关闭死/不活动的线程。
  3. enter image description here

    enter image description here

1 个答案:

答案 0 :(得分:1)

使用dispatch_queue_create创建名称的线程。
然后你就可以看到线程并在Xcode中暂停它们。
或者您可以存储在临时变量中,并在您的应用中停止。

enter image description here