Dispatch Source
Posted encoreMiao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Dispatch Source相关的知识,希望对你有一定的参考价值。
//使用该方法,可以更新UI、查询类的属性,甚至是执行方法,所有这一切都不需要重启应用病达到某个特定的工作状态,相当优美。
//1
#if DEBUG
//2
dispatch_queue_t queue = dispatch_get_main_queue();
//3
static dispatch_source_t source = nil;
//4
__typeof(self) __weak weakself = self;
//5
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
//6
source = dispatch_source_create(DISPATCH_SOURCE_TYPE_SIGNAL, SIGSTOP, 0, queue);
//7
if (source) {
//8
dispatch_source_set_event_handler(source, ^{
//9
NSLog(@"%@ Hi I am",weakself);
});
//10
dispatch_resume(source);
}
});
#endif
以上是关于Dispatch Source的主要内容,如果未能解决你的问题,请参考以下文章
iOS GCD使用dispatch_after、dispatch_time、dispatch_walltime
iOS-多线程dispatch_semaphore_t dispatch_queue_t dispatch_group_t常见用法场景
dispatch_queue_create、dispatch_retain、dispatch_release函数的使用
如何在 Swift 3、Swift 4 及更高版本中 dispatch_sync、dispatch_async、dispatch_after 等?