首页 > 代码库 > GCD定时器
GCD定时器
GCD定时器
by 伍雪颖
+ (GCDTimer *)repeatingTimer:(NSTimeInterval)seconds block:(void (^)(void))block { NSParameterAssert(seconds); NSParameterAssert(block); GCDTimer *timer = [[self alloc] init]; timer.block = block; timer.source = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, dispatch_get_main_queue()); uint64_t nsec = (uint64_t)(seconds * NSEC_PER_SEC); dispatch_source_set_timer(timer.source, dispatch_time(DISPATCH_TIME_NOW, nsec), nsec, 0); dispatch_source_set_event_handler(timer.source, block); dispatch_resume(timer.source); return timer; } - (void)invalidate { if (self.source) { dispatch_source_cancel(self.source); self.source = nil; } self.block = nil; }
__block int n=0; self.timer = [GCDTimer repeatingTimer:1 block:^{ n++; NSLog(@"Hello"); if (n == 3) { [self.timer invalidate]; } }];使用简单方便.
GCD定时器
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。