Which tasks would be better suited to using NSOperation as opposed to using GCD when programming for the iPhone?
To me they seem to do the same thing. I can't see the strengths and weaknesses one has over the other.
|
Which tasks would be better suited to using To me they seem to do the same thing. I can't see the strengths and weaknesses one has over the other. |
||||
|
|
|
An Passing a block to GCD by e.g. So each has its merits. |
|||||||||||||||||||||
|
|
Apparently, NSOperationQueue is built on GCD as of iOS 4; the docs just haven't been updated. Check this posting by an Apple employee here: https://devforums.apple.com/message/352770 (You may need to create an account) So, you should follow Mike Abdullah's advice and use the simplest API for the task at hand. dispatch_async is lower level, usually C-type stuff (but not limited to), and is good for one-shot and sequential type deals (fire this block on this queue, FTW). NSOperationQueues are higher level, Objective-C stuff, and are good if you are adding a lot of operations at various points in your code, and/or need to manage concurrency, priorities and dependencies. At least that's how I use them. |
|||||||
|
|
As always with such questions, use the simplest API available. Measure if it's a performance problem and then reevaluate if needed. |
|||||||||||||||
|
|
One thing that I don't believe has been mentioned here is that |
|||
|
|