1、Dispatch Source 应用:事件联结、进度条更新、精准定时器
2、iOS中的定时器:NSTimer、CADisplayLink、dispatch_source_t
3、iOS中的几种延迟执行方式:animateWithDuration、sleepForTimeInterval、dispatch_after、performSelector、NSTimer、dispatch_source_t
4、performSelector的原理及应用场景分析:按钮防抖处理、延迟搜索设置
事件联结想到定时器、定时器想到延迟执行、延迟执行想到performSelector与事件联结的区分、进而过渡到performSelector的实现原理。
6、GCD全解-dispatch_after/dispatch_time-t延迟操作
7、GCD全解-dispatch_barrier_sync/async-栅栏函数
9、GCD全解-dispatch_apply-重复操作性能分析