延时函数与子线程中的定时器

整理了几个延时函数,欢迎围观

多线程GCD的延时函数
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.0 * NSEC_PER_SEC)),dispatch_get_main_queue(), ^{
        //块代码会在一秒之后执行
});

//这个也比较常用

- (void)performSelector:(SEL)aSelector withObject:(nullable id)anArgument afterDelay:(NSTimeInterval)delay;


与它类似的还有

- (void)performSelector:(SEL)aSelector withObject:(nullable id)anArgument afterDelay:(NSTimeInterval)delay inModes:(NSArray *)modes;


现在进入我认为真正要注意的问题了

关于定时器能不能在子线程中执行的问题,

答案是如果不经过任何处理,单纯的在子线程中创建定时器,定时器是不会有作用的

上代码:

//如果要在次线程中添加timer,那么需要开启一个runloop,将创建好的timer添加到runloop中,并且启动runloop,否则定时器不会启动


//创建一个线程

[[NSThread alloc] initWithTarget:self selector:@selector(thread4) object:nil]

//子线程创建timer

- (void)thread4

{   NSTimer * timer = [NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(changes) userInfo:nil repeats:YES] ;
//如果没有后面两句代码,定时器是会偷懒的哦   

    [[NSRunLoop currentRunLoop] addTimer:timer forMode:NSRunLoopCommonModes] ;
    
    [[NSRunLoop currentRunLoop] run] ;

}

大家没事可以研究研究

你可能感兴趣的:(延时函数与子线程中的定时器)