我需要知道NSOperationQueue
何时从队列中删除操作?
我有NSOperationQueue
,其中有NSOperation
的列表。在什么时候NSOperationQueue
从队列中删除一个操作?
因为完成
NSOPerationqueue
中的所有操作后,我需要通知。为此,我提到了this link 最佳答案
根据Apple开发人员引用
因此,NSOperationQueue
在完成操作后将其删除。
来源-https://developer.apple.com/library/mac/documentation/Cocoa/Reference/NSOperationQueue_class/Reference/Reference.html
关于ios - NSOperationQueue何时从队列中删除操作?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21521284/