我正在创建一个重复的 NSTimer 对象,该对象-Loop()
在运行循环的每次迭代中调用该方法:-
NSTimer *loopTimer = [NSTimer scheduledTimerWithTimeInterval:TIMER_INTERVAL target:self selector:@selector(Loop) userInfo:nil repeats:YES];
在 Loop() 中,我在必要时使计时器无效:-
[loopTimer invalidate];
但是,在使用 -invalidate() 之后,触摸处理方法 -touchesBegan()、-touchesEnded() 停止响应触摸事件。NSTimer 会以某种方式影响运行循环吗?