我创建了一个计时器,
self.scanTimer = [NSTimer scheduledTimerWithTimeInterval:TIMEOUT_SECONDS target:self selector:@selector(meInterrupted:) userInfo:nil repeats:NO];
在我的代码中的某个时间点,我觉得在超时发生之前禁用它,以便不调用 meInterrupted?如何做到这一点?
我创建了一个计时器,
self.scanTimer = [NSTimer scheduledTimerWithTimeInterval:TIMEOUT_SECONDS target:self selector:@selector(meInterrupted:) userInfo:nil repeats:NO];
在我的代码中的某个时间点,我觉得在超时发生之前禁用它,以便不调用 meInterrupted?如何做到这一点?