跟踪NSTimer的发射

时间:2012-03-11 07:38:55

标签: iphone objective-c xcode cocoa-touch nstimer

我想跟踪NSTimer发射多少次并将数字存储在ivar中。我有一个指向存储在名为timer的属性中的NSTimer的指针,我将其设置为:[NSTimer scheduledTimerWithTimeInterval:timeInterval target:self selector:@selector(method) userInfo:nil repeats:NO];

有关如何跟踪timer触发多少次并将数字存储在实例变量中的任何指示?

感谢。

1 个答案:

答案 0 :(得分:2)

添加实例变量timerCount,然后将timerCount++放入计时器方法。