美文网首页
GCD之dispatch_async_f dispatch_sy

GCD之dispatch_async_f dispatch_sy

作者: 子键_北京不眠夜 | 来源:发表于2016-06-08 17:38 被阅读240次

除了添加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 *); 第二个参数是传给这个函数的参数。

相关文章

网友评论

      本文标题:GCD之dispatch_async_f dispatch_sy

      本文链接:https://www.haomeiwen.com/subject/lnujdttx.html