在NSTimer代码后面加上以下代码,这样滚动scroll的时候就不会暂停了。
NSRunLoop *t = [NSRunLoop currentRunLoop];[t addTimer: timer forMode:forMode:NSRunLoopCommonModes]其中timer是自定义的NSTimer对象。 posted on 2016-01-21 17:11 阅读( ...) 评论( ...)
本文共 256 字,大约阅读时间需要 1 分钟。
在NSTimer代码后面加上以下代码,这样滚动scroll的时候就不会暂停了。
NSRunLoop *t = [NSRunLoop currentRunLoop];[t addTimer: timer forMode:forMode:NSRunLoopCommonModes]其中timer是自定义的NSTimer对象。转载于:https://www.cnblogs.com/z-j-w/p/5148951.html