开发者

How to terminate performSelectorInBackground: thread?

开发者 https://www.devze.com 2023-03-30 07:02 出处:网络
How can I kill a thread created by performSelectorInBackground:withObject: from the main t开发者_Go百科hread? I need to force termination of freezing threads.You cannot kill background threads from th

How can I kill a thread created by performSelectorInBackground:withObject: from the main t开发者_Go百科hread? I need to force termination of freezing threads.


You cannot kill background threads from the main thread, the method that is executing in a background thread has to return for the thread to end.

Your actual problem seems to be that your background thread is freezing, you should solve that instead of trying to work around it.


I'm not sure if this may help but here goes:

Assuming you're calling that performSelector call from class A. And assuming that class A is about to be released from memory in class B (which is where if the selector hasn't been performed yet, you might be getting a crash - Hence you're posting this question on SO):

Wherever you're releasing A from B, do this:

[NSObject cancelPreviousPerformRequestsWithTarget:A];


Apple documentation says

The recommended way to exit a thread is to let it exit its entry point routine normally. Although Cocoa, POSIX, and Multiprocessing Services offer routines for killing threads directly, the use of such routines is strongly discouraged. Killing a thread prevents that thread from cleaning up after itself. Memory allocated by the thread could potentially be leaked and any other resources currently in use by the thread might not be cleaned up properly, creating potential problems later.

0

精彩评论

暂无评论...
验证码 换一张
取 消