子线程中 [self performSelector:@selector(printLog) withObject:nil afterDelay:0];方法不调用

    dispatch_async(dispatch_get_global_queue(0, 0), ^{
        NSLog(@"before perform");
        [self performSelector:@selector(printLog) withObject:self afterDelay:0]; //延时这个方法不会被调用,不会打印printLog
        [self performSelector:@selector(printLog) withObject:nil]; //这个方法会调用,会打印printLog
        NSLog(@"after perform");
    });
}
- (void)printLog {
    NSLog(@"printLog");
}

Why
结论

  • 1.performSelector 如果不使用延时,程序会再子线程上直接调用该方法,方法会被调用
  • 2.如果使用延时,在子线程中方法不会被调用,因为该方法等待定时器去调用,而该子线程中没有定时器,所以不会调用
  • 3.解决2的方法就是使用dispatch_after里面会有一个定时器,来调用方法

解决办法

  dispatch_async(dispatch_get_global_queue(0, 0), ^{
        NSLog(@"before perform");

        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
            [self printLog];
        });
    
        NSLog(@"after perform");
    });

你可能感兴趣的:(子线程中 [self performSelector:@selector(printLog) withObject:nil afterDelay:0];方法不调用)