The only functional difference I have encountered is that I can cancel the message scheduled with performSelector:withObject:afterDelay:. I don’t know of a way to cancel a block submitted to dispatch_after. (Please let me know if there is a way to do this that I do not know about).
I’d like to know more about:
- functional tradeoffs (What else can be accomplished with one interface but not the other?)
- performance tradeoffs (Is one implementation more efficient? In which cases?)
- stylistic tradeoffs (Should I prefer one interface for certain tasks to better follow common styles or conventions?)
dispatch_afteris part of the new Grand Central Dispatch, which is an extension to iOS aimed at improving concurrent code execution on multicore hardware.But overall, I think they address different requirements overall. GCD allows to a much finer graded control over concurrent execution of code. You can schedule blocks on a queue, remove them, suspend, resume, etc. It is a broader topic to be considered here in general. Also, GCD provides many more synchronization options.
As far as the comparison with
performSelector, I think that one advantagedispatch_afterrightly has is the possibility of scheduling a block without the need to define a selector.See this discussion.
On in all, I haven’t got much experience with GCD, but I would say that apart from the block scheduling thing, when you simply need to delay some selector execution in your UI, without much a requirement for concurrency in general, I would use
performSelector.If you think about it,
performSelectorgives you a very poor concurrency, since it simply schedules your selector for execution on the run loop after a minimum amount of time. On the other hand,dispatch_aftergives you a control which seems in principle at the level of nanoseconds (!! this is what I get from Apple docs, but I have never used it and I don’t think that on an iPhone you would get that, possibly on MacOS).EDIT: about unscheduling a block, I have never tried to unschedule a block from a queue, but there is a possibility that
dispatch_releasealso allows you to control that. If it does not, you could define your custom queue for the block that you want to cancel and release the whole queue (before the block starts being executed), if that ever makes sense to you.As to performance, I really don’t know what
performSelectordoes inside, but if it schedules a thread, then Apple states that scheduling a block with GCD only costs 15 instructions, while creating a thread costs several hundred of them.Apart from
performSelector, don’t forget you have the option of usingNSOperationQueue, which is based on GCD, and has some overhead overt it but not that big, they say.NSOperationQueuecertainly offers the possibility of cancelling.