Sometimes Cocoa allows a user to pass either NSOperationQueue or dispath_queue_t to the async method:
+[NSURLConnection sendAsynchronousRequest:queue:completionHandler:]
-[AVPlayer addBoundaryTimeObserverForTimes:queue:usingBlock:]
-[NSNotificationCenter addObserverForName:object:queue:usingBlock:]
Sometime doesn't:
-[NSDocument continueActivityUsingBlock:]
-[NSSavePanel beginWithCompletionHandler:]
-[GKAchievementDescription loadImageWithCompletionHandler:]
To me, passing a queue to the method looks ambiguous, because you can always catch desired queue when you create a block. E.g.:
NSOperationQueue *q = …;
[aDocument continueActivityUsingBlock:^{
[q addOperationWithBlock:^{
// Do actual work here.
}];
}];
Maybe I'm missing something and passing queues makes sense?