tableViewCell上的定时器拖动阻塞

if (_timer == nil) {

        

        _timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(changeSeconds) userInfo:nil repeats:YES];

        

//防止阻塞

        [[NSRunLoop currentRunLoop] addTimer:_timer forMode:UITrackingRunLoopMode];

        

    }

原文地址:https://www.cnblogs.com/block123/p/5053873.html