SYNOPSIS
Fd #include <dispatch/dispatch.h> Ft void Fo dispatch_after Fa dispatch_time_t when dispatch_queue_t queue void (^block)(void) Fc Ft void Fo dispatch_after_f Fa dispatch_time_t when dispatch_queue_t queue void *context void (*function)(void *) FcDESCRIPTION
The Fn dispatch_after function submits the Fa block to the given Fa queue at the time specified by the Fa when parameter. The Fa when parameter is a value created by Fn dispatch_time or Fn dispatch_walltime .For a more detailed description about submitting blocks to queues, see dispatch_async3.