最近项目做了微信支付,需求是待支付的订单有效期是24小时之内,所以在订单列表可能存在多个订单的倒计时时间,虽然对大牛来说很简单,但是下面还是记录下我的实现方法和所遇到的一些使用NSTimer的注意点吧。
实现方法:
首先我是开一个timer管理多个倒计时,因为我看过一个倒计时开一个timer的,这样开多个timer不利于性能。接口传一个最新剩余倒计时毫秒数就行,注意是毫秒数哦,因为一下代码计算时间单位用的毫秒。
1.1声明一个timer属性
@property (nonatomic, strong) NSTimer *timer;
1.2建立一个时间模型
@interface ZHBTimeLessModel : NSObject
@property (nonatomic,strong) NSString *indexPath;//数组下标(需要倒计时的Cell IndexPath 方便取到相应的Cell 改变倒计时时间)
@property (nonatomic,strong) NSString *lastTime;//剩余时间
@property (nonatomic,strong) NSString *orderCount;//订单中商品数量
@end
1.3请求到数据后将倒计时模型加入数组
for (int i = 0; i < self.dataArray.count; i++)
{
ZHBMyOderModel *orderM = self.dataArray[i];
ZHBTimeLessModel *model = [[ZHBTimeLessModel alloc] init];
model.indexPath = [NSString stringWithFormat:@"%d",i];
model.lastTime = orderM.restSecond;
model.orderCount = [NSString stringWithFormat:@"%lu",(unsigned long)orderM.details.count];
[self.totalLastTime addObject:model];
}
1.4将毫秒转化为时分方法
- (NSString *)lessSecondToDay:(NSUInteger)seconds
{
NSUInteger hour = seconds/60000/60;
NSUInteger min = (seconds/60000)%60;
NSUInteger second = (seconds%60000)/1000;
NSString *time = [NSString stringWithFormat:@"%lu小时%lu分钟%lu秒",(unsigned long)hour,(unsigned long)min,(unsigned long)second];
return time;
}
1.5刷新时间方法
- (void)refreshLessTime
{
int time;
for (int i = 0; i < self.totalLastTime.count; i++) {
ZHBTimeLessModel *model = self.totalLastTime[i];
time = model.lastTime.intValue;
NSIndexPath *indexPath = [NSIndexPath indexPathForItem:0 inSection:[model.indexPath integerValue]];
if (model.orderCount.intValue == 1)
{
ZHBMineOrderCell *cell = (ZHBMineOrderCell *)[self.tableView cellForRowAtIndexPath:indexPath];
if (time <= 1000) {
time -= 1000;
cell.payLabel.text = [NSString stringWithFormat:@"结束了:%@",[self lessSecondToDay:time]];
[self getHeaderOrderListData];
continue;
}else{
time -= 1000;
cell.payTime.text = [NSString stringWithFormat:@"%@",[self lessSecondToDay:time]];
}
}
//多个订单
else
{
ZHBMutiOrdersCell *cell = (ZHBMutiOrdersCell *)[self.tableView cellForRowAtIndexPath:indexPath];
if (time <= 1000) {
time -= 1000;
cell.payLabel.text = [NSString stringWithFormat:@"结束了:%@",[self lessSecondToDay:time]];
[self getHeaderOrderListData];
continue;
}else{
time -= 1000;
cell.payTime.text = [NSString stringWithFormat:@"%@",[self lessSecondToDay:time]];
}
}
NSDictionary *dic = @{@"indexPath": [NSString stringWithFormat:@"%li",(long)indexPath.section],@"lastTime": [NSString stringWithFormat:@"%lu",(unsigned long)time]};
ZHBTimeLessModel *timeModel = [[ZHBTimeLessModel alloc] init];
timeModel.indexPath = [dic objectForKey:@"indexPath"];
timeModel.lastTime = [dic objectForKey:@"lastTime"];
timeModel.orderCount = model.orderCount;
[self.totalLastTime replaceObjectAtIndex:i withObject:timeModel];
}
}
这里注意一下 [self.totalLastTime replaceObjectAtIndex:i withObject:timeModel];
每次都将新的时间代替之前的时间。 还有就是时间模型里的IndexPath下标,这里巧妙的记住了需要倒计时的tabelViewCell下标,这样就取出了需要实时更改时间的cell中的Label来改变文字。当然也要记住倒计时为0时刷新下网络请求来满足业务需求。
1.6timer的开启和关闭
- (void)viewDidLoad
{
[super viewDidLoad];
[self startTimer];
}
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
if (self.timer == nil) {
[self startTimer];
}
}
- (void)viewDidDisappear:(BOOL)animated
{
[super viewDidDisappear:animated];
//取消定时器
[self.timer invalidate];
self.timer = nil;
}
核心代码就是这些,下面来说下我使用NSTimer遇到的坑吧。
2.1虽然自己都知道开启NSTimer,要记得在不需要用的时候把他关闭,但是这次我真的忘记关了,某一次发现退出页面timer的数据请求还在一直刷新。
2.2在哪开启和关闭NSTimer。之前写在viewDidLoad,当从需要倒计时页面push到下一个页面的时候在viewDidDisappear关闭了,再返回timer就关了,所以需要在viewWillAppear开启,但是为了防止开启多个timer导致倒计时速度加快所以要做一个是否nil的判断。如果在viewWillDisappear方法里关闭的话,就会出现侧滑到一半又停留在倒计时页面时,timer被关闭了。
2.3还有就是一点cell重用导致的问题。
暂时总结这么多了。