我需要知道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/

    10-11 12:08