项目中有一个支付时间倒计时的需求,类似于美团外卖的支付倒计时。我也从网上搜到一些实现的方法,以下是我总结的一些。
界面展示.png倒计时有三种实现的方法:
- 通过定时器NSTimer,属于比较简单的写法;
- 通过GCD;
第一种:
_seconds = 60;//60秒倒计时
_countDownTimer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(timeFireMethod) userInfo:nil repeats:YES];
-(void)timeFireMethod{
_seconds--;
if(_seconds ==0){
[_countDownTimer invalidate];
}
}
第二种:
__block int timeout=60; //倒计时时间
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_source_t _timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0,queue);
dispatch_source_set_timer(_timer,dispatch_walltime(NULL, 0),1.0*NSEC_PER_SEC, 0); //每秒执行
dispatch_source_set_event_handler(_timer, ^{
if(timeout<=0){ //倒计时结束,关闭
dispatch_source_cancel(_timer);
dispatch_release(_timer);
dispatch_async(dispatch_get_main_queue(), ^{
//设置界面的按钮显示 根据自己需求设置
。。。。。。。。
});
}else{
int minutes = timeout / 60;
int seconds = timeout % 60;
NSString *strTime = [NSString stringWithFormat:@"%d分%.2d秒后重新获取验证码",minutes, seconds];
dispatch_async(dispatch_get_main_queue(), ^{
//设置界面的按钮显示 根据自己需求设置
。。。。。。。。
});
timeout--;
}
});
dispatch_resume(_timer);
我的项目中运用的是通过GCD来实现倒计时。原理就是:使用GCD创建定时器并设置定时器的间隔时间为1秒,然后在定时器的响应事件方法中将倒计时的总时间依次减1,由于定时器响应事件是在block中,所有控件的修改需要使用__weak来修饰,避免循环调用。以下是我的代码:
在HCCountdown.h文件中
/**
* 用时间戳倒计时
* starTimeStamp 开始的时间戳
* finishTimeStamp 结束的时间戳
* day 倒计时开始后的剩余的天数
* hour 倒计时开始后的剩余的小时
* minute 倒计时开始后的剩余的分钟
* second 倒计时开始后的剩余的秒数
*/
-(void)countDownWithStratTimeStamp:(long)starTimeStamp finishTimeStamp:(long)finishTimeStamp completeBlock:(void (^)(NSInteger day,NSInteger hour,NSInteger minute,NSInteger second))completeBlock;
在HCCountdown.m文件中
#import "HCCountdown.h"
@interface HCCountdown ()
@property(nonatomic,retain) dispatch_source_t timer;
@property(nonatomic,retain) NSDateFormatter *dateFormatter;
@end
-(void)countDownWithStratTimeStamp:(long)starTimeStamp finishTimeStamp:(long)finishTimeStamp completeBlock:(void (^)(NSInteger day,NSInteger hour,NSInteger minute,NSInteger second))completeBlock{
if (_timer==nil) {
NSDate *finishDate = [self dateWithLong:finishTimeStamp]; //时间戳转时间
NSDate *startDate = [self dateWithLong:starTimeStamp];
NSTimeInterval timeInterval =[finishDate timeIntervalSinceDate:startDate]; //获取两个时间的间隔时间段
__block int timeout = timeInterval; //倒计时时间
if (timeout!=0) {
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
_timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0,queue);
dispatch_source_set_timer(_timer,dispatch_walltime(NULL, 0),1.0*NSEC_PER_SEC, 0); //每秒执行
dispatch_source_set_event_handler(_timer, ^{
if(timeout<=0){ //倒计时结束,关闭
dispatch_source_cancel(_timer);
_timer = nil;
dispatch_async(dispatch_get_main_queue(), ^{
completeBlock(0,0,0,0);
});
}else{
int days = (int)(timeout/(3600*24));
int hours = (int)((timeout-days*24*3600)/3600);
int minute = (int)(timeout-days*24*3600-hours*3600)/60;
int second = timeout-days*24*3600-hours*3600-minute*60;
dispatch_async(dispatch_get_main_queue(), ^{
completeBlock(days,hours,minute,second);
});
timeout--;
}
});
dispatch_resume(_timer);
}
}
}
在ViewController.m 文件中
@property (nonatomic, strong) HCCountdown *countdown;
- 首先获取开始时间的时间戳
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
// ----------设置你想要的格式,hh与HH的区别:分别表示12小时制,24小时制
[formatter setDateFormat:@"YYYY年MM月dd日HH:mm:ss"];
//现在时间,你可以输出来看下是什么格式
NSDate *datenow = [NSDate date];
//----------将nsdate按formatter格式转成NSString
NSString *currentTimeString_1 = [formatter stringFromDate:datenow];
NSDate *applyTimeString_1 = [formatter dateFromString:currentTimeString_1];
_nowTimeSp = (long)[applyTimeString_1 timeIntervalSince1970];
- 获取5分钟后的时间(也就是倒计时结束后的时间)
NSTimeInterval time = 5 * 60;//5分钟后的秒数
NSDate *lastTwoHour = [datenow dateByAddingTimeInterval:time];
NSString *currentTimeString_2 = [formatter stringFromDate:lastTwoHour];
NSDate *applyTimeString_2 = [formatter dateFromString:currentTimeString_2];
_fiveMinuteSp = (long)[applyTimeString_2 timeIntervalSince1970];
- 启动倒计时
[_countdown countDownWithStratTimeStamp:strtL finishTimeStamp:finishL completeBlock:^(NSInteger day, NSInteger hour, NSInteger minute, NSInteger second) {
//这里可以实现你想要实现的UI界面
[weakSelf refreshUIDay:day hour:hour minute:minute second:second];
}];
注意:在控制器释放的时候一点要停止计时器,以免再次进入发生错误
- (void)dealloc {
[_countdown destoryTimer];
}
在我写着需求的时候,发现这样的倒计时在真机上app退到后台后,倒计时会停止。
所以我想了一个简单的方法,但是这个方法的弊端在于:如果用户更改手机本地的时间,这里的倒计时就会出现问题。各位大神如有解决办法,请告知,谢谢!
以下是我的方法:
首先注册两个通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didInBackground:) name:UIApplicationDidEnterBackgroundNotification object:nil];//app进入后台
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(willEnterForground:) name:UIApplicationWillEnterForegroundNotification object:nil];//app进入前台
实现这两个通知方法:
- (void) didInBackground: (NSNotification *)notification {
NSLog(@"倒计时进入后台");
[_countdown destoryTimer];//倒计时停止
}
- (void) willEnterForground: (NSNotification *)notification {
NSLog(@"倒计时进入前台");
[self getNowTimeSP:@""]; //进入前台重新获取当前的时间戳,在进行倒计时, 主要是为了解决app退到后台倒计时停止的问题,缺点就是不能防止用户更改本地时间造成的倒计时错误
}
同样,注册一个通知后就要移除,可以在 dealloc 方法中写
[[NSNotificationCenter defaultCenter] removeObserver:self];
下面附上我写的 倒计时Demo
网友评论