Difference between NSOperation and NSInvocationOperation?

后端 未结 2 1932
野性不改
野性不改 2021-02-10 14:41

1) what is happening when we add NSOperation or NSInvocationOperation in NSoperationQueue?

2) What is the difference between

相关标签:
2条回答
  • 2021-02-10 15:21

    1. Difference Between NSoperation and NSInvocationOperation

    An NSoperation object is a single-shot object—that is, it executes its task once and cannot be used to execute it again.

    The NSInvocationOperation class is a concrete subclass of NSOperation that manages the execution of a single encapsulated task specified as an invocation. You can use this class to initiate an operation that consists of invoking a selector on a specified object. This class implements a non-concurrent operation.

    2.What is happening when we add NSOperation or NSInvocationOperation in NSoperationQueue

    You typically execute operations by adding them to an operation queue (an instance of the NSOperationQueue class). An operation queue executes its operations either directly, by running them on secondary threads, or indirectly using the libdispatch library (also known as Grand Central Dispatch)

    3.Which one is the best

    I think the word Best may vary as per your situations :)

    0 讨论(0)
  • 2021-02-10 15:33

    Cocoa Is My Girlfriend has a good tutorial on the use of NSOperation and NSOperationQueue. The tutorial makes use of NSOperation to download several webpages simultaneously in separate threads.

    Also Check this question NSOperation on the iPhone

    0 讨论(0)
提交回复
热议问题