在NSTimer代码后面加上以下代码,这样滚动scroll的时候就不会暂停了。
NSRunLoop *t = [NSRunLoop currentRunLoop];
[t addTimer: timer forMode:forMode:NSRunLoopCommonModes]
其中timer是自定义的NSTimer对象。
时间: 2024-12-14 06:42:38
在NSTimer代码后面加上以下代码,这样滚动scroll的时候就不会暂停了。
NSRunLoop *t = [NSRunLoop currentRunLoop];
[t addTimer: timer forMode:forMode:NSRunLoopCommonModes]
其中timer是自定义的NSTimer对象。