前言 :
开发过程中处理了一个“待付款”订单倒计时需求,测试发现UITableView滑动时NSTimer的计时器会停止,并且会重新计算。
问题分析
- 1.NSTimer计时停止是因为在tableview滑动时timer就是显示暂停,原因是timer的简便构造方法把timer加入了NSRunLoopDefaultMode上,而tableview在滑动时只会处理UITrackingRunLoopMode,也就是说当前的RunLoop并没有功夫处理timer事件。
- 2.NSTimer计时重新计算,UITableViewCell 复用,倒计时会重新赋值。此时采取的是获取接口的时间(纳秒)进行倒计时计算。
解决方案
(一)计时器停止
1. 把定时器添加到当前线程消息循环中 并指定消息循环的模式为
NSRunLoopCommonModes(无论runloop运行在哪个mode,都能运行)
NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerStepStart) userInfo:nil repeats:YES];
[[NSRunLoop currentRunLoop] addTimer:_timer forMode: forMode:NSRunLoopCommonModes];
2. 切换到主线程上更新UI
- 步骤1.把NSTimer放到子线程中,但是要注意:因为自线程的消息循环默认不开启,所以这里还需要开启一下子线程的消息循环
dispatch_async(dispatch_get_global_queue(0, 0), ^{
self.timer = [NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(demo) userInfo:nil repeats:YES];
[[NSRunLoop currentRunLoop] addTimer:self.timer forMode:NSDefaultRunLoopMode];
[[NSRunLoop currentRunLoop] run];
});
- 步骤2.切换到主线程上更新UI
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
self.label.text = [NSString stringWithFormat:@"%f",_times];
}];
// GCD方式
/*dispatch_async(dispatch_get_main_queue(), ^{
self.label.text = [NSString stringWithFormat:@"%f",_times];
});*/
- 其他方法
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
//创建队列
dispatch_queue_t queue = dispatch_get_global_queue(0, 0);
//1.创建一个GCD定时器
/*
第一个参数:表明创建的是一个定时器
第四个参数:队列
*/
dispatch_source_t timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, queue);
// 需要对timer进行强引用,保证其不会被释放掉,才会按时调用block块
// 局部变量,让指针强引用
self.timer = timer;
//2.设置定时器的开始时间,间隔时间,精准度
/*
第1个参数:要给哪个定时器设置
第2个参数:开始时间
第3个参数:间隔时间
第4个参数:精准度 一般为0 在允许范围内增加误差可提高程序的性能
GCD的单位是纳秒 所以要*NSEC_PER_SEC
*/
dispatch_source_set_timer(timer, DISPATCH_TIME_NOW, 2.0 * NSEC_PER_SEC, 0 * NSEC_PER_SEC);
//3.设置定时器要执行的事情
dispatch_source_set_event_handler(timer, ^{
NSLog(@"---%@--",[NSThread currentThread]);
});
// 启动
dispatch_resume(timer);
}
(二)倒计时重置
为了与Android端统一,之前采取服务器端进行倒计时,每次请求接口返回时间点,各端计算展示倒计时。因为 cell 复用就会重新赋值,所以改成各端根据下单时间自己计算倒计时。
根据服务器端传入下单时间例如:create_time: "2018-04-16 16:09"
,进行解析并与当前时间计算,返回倒计时秒数(倒计时最大值为15min)。
- (NSInteger)computingTime:(NSString *)createTime{
NSInteger firstMin = [[createTime substringWithRange:NSMakeRange(createTime.length-5, 2)] integerValue];
NSInteger firstSec = [[createTime substringWithRange:NSMakeRange(createTime.length-2, 2)] integerValue];
//获取当前时间
NSDate *today = [NSDate date];
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
// 时间格式,建议大写 HH 使用 24 小时制;hh 12小时制
[dateFormat setDateFormat:@"mmss"];
NSString *nowTime = [dateFormat stringFromDate:today];//将日期转换成字符串
NSInteger nowMin = [[nowTime substringToIndex:2] integerValue];
NSInteger nowSec = [[nowTime substringFromIndex:2] integerValue];
NSInteger second = 0;
if (nowSec < firstSec) {
nowMin = nowMin-1;
second = nowSec-firstSec+60;
}else{
second = nowSec-firstSec;
}
if (nowMin < firstMin) {
second = second + (nowMin-firstMin+60)*60;
}else{
second = second + (nowMin-firstMin)*60;
}
second = 15*60 - second;
return second;
}