队列 同步 异步
2020-06-20 本文已影响0人
永永不止步
区别 并发队列 串行队列 主队列
同步(sync) 没有开启新线程,串行执行任务 没有开启新线程,串行执行任务 主线程调用:死锁卡住不执行
其他线程调用:没有开启新线程,串行执行任务
异步(async) 有开启新线程,并发执行任务 有开启新线程(1条),串行执行任务 没有开启新线程,串行执行任务
区别 | 并发队列 | 串行队列 |
---|---|---|
同步(sync) | 没有开启新线程/串行 | 没有开启新线程/串行 |
异步(async) | 有开启新线程/并发执行任务 | 没有开启新线程 |
MJRefreshHeader.h
@interface MJRefreshHeader:MJRefreshComponent
+(instancetype)headerWithRefreshingBlock :(MJRefreshComponentRefreshingBlock)refreshingBlock ;
/ * * Creat header * /
+(instancetype)headerWithRefreshingTarget :(id)target refreshingAction :(SEL)action ;
/ * *该键用于存储上次淹没成功的时间* /
@属性(复制,非原子) NSString * lastUpdatedTimeKey;
/ * *成功淹没的最后一次* /
@property(强,非原子,只读) NSDate * lastUpdatedTime;
@结束