Difference between dispatchqueue and operationqueue
Answers
Answered by
0
Dispatchquene uses regular background threads which have a little more overhead than GCD dispatch queues. On the other hand, NSOperationQueue gives you a lot more control over how your operations are executed. ... EDIT: It seems the documentation about NSOperationQueue is outdated and it does use GCD on iOS 4.0 and later.
Similar questions