码迷,mamicode.com
首页 > 其他好文 > 详细

nstimer注意事项

时间:2017-05-12 13:13:30      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:class   add   改变   好的   注意   mod   comm   mon   nil   

当nstimer在主线程创建时,当滑动时,系统为了更好的处理UI事件,会暂停timer,解决办法就是改变timer的mode,不使用缺省的NSDefaultRunLoopMode,而是改用NSRunLoopCommonModes

NSTimer *timer = [NSTimer timerWithTimeInterval:1.0 target:self selector:@selector(timer:) userInfo:nil repeats:YES];

[[NSRunLoop currentRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];

nstimer注意事项

标签:class   add   改变   好的   注意   mod   comm   mon   nil   

原文地址:http://www.cnblogs.com/liuting-1204/p/6844916.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!