除了添加Block到Dispatch Queue,还有添加函数到Dispatch Queue的接口,dispatch_async对应的有dispatch_async_f
dispatch_sync对应的有dispatch_sync_f
dispatch_async_f(dispatch_queue_t queue,
void *context,
dispatch_function_t work);
其中第三个参数就是个函数指针,即typedef void (*dispatch_function_t)(void *); 第二个参数是传给这个函数的参数。