I want to setup a serialized task queue using NSOperationQueue but I\'m a little confused by the terminology discussed in the documentation.
In the co
Do you really need to subclass NSOperation? Why not just use NSInvocationOperation and its addDependency: method?
NSOperation
NSInvocationOperation
addDependency:
See my answer in this SO question.