Nstimer count wrong
问题 I have a problem with NSTimer. I start and repeat it every 100ms and I have a counter to check if i runed 10s. The problem is it stoped in near 1 minute, not in 10s. Here is my code timer = [NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(checkTimer) userInfo:nil repeats:YES]; -(void)checkTimer { timerCount += 1; if(timerCount == 1) { NSLog(@"start"); } if(timerCount == 103) { NSLog(@"i got it"); } } here is the log: 2012-11-19 08:57:42.063 Karagram[11708:540b] start