NSTimer使用两点注意事项

  • NSTimer在UITableViewCell中使用是,需要将timer加到runLoop中。
      countDownTimer = [NSTimer timerWithTimeInterval:1.0 target:self selector:@selector(countDown:) userInfo:nil repeats:YES];
      NSRunLoop *currentRunLoop = [NSRunLoop currentRunLoop];
      [currentRunLoop addTimer:countDownTimer forMode:NSRunLoopCommonModes];  
  • 同一个timer在重复使用之前必需invalidate, 否则会造成之前的timer无法停掉,两个timer同时存在。导致的现象就是timer同时更新两次。

blog addr:http://timbao.github.io/blog/2015/06/05/use%20NSTimer%20attention/

你可能感兴趣的:(NSTimer使用两点注意事项)