NSTimer使用两点注意事项

作者: TimBao | 来源:发表于2015-06-05 10:47 被阅读1427次
    • 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使用两点注意事项

      本文链接:https://www.haomeiwen.com/subject/erbdqttx.html