NSTimer线程问题

时间:2013-03-22 02:17:40

标签: ios nstimer

我有单例实现NSTimer对象。

我使用下面的代码运行我的计时器

self.myTimer = [NSTimer scheduledTimerWithTimeInterval: 1.0
                                                        target: self
                                                        selector: @selector(onTick:)
                                                        userInfo: nil repeats:YES];

我有NSUInteger个实例变量,每次调用- onTick:方法时都会增加(因此,每秒一次)。

我有UILabel表示我的NSUInteger实例变量的日期,它运行良好。我的观点中也有UIScrollView。当我滚动它时,UILabel不会更新文本。甚至在- onTick:方法中显示有关计时器滴答信息的NSLog也不起作用。如果我不滚动计时器开始工作。

0 个答案:

没有答案