在iOS开发过程中,尤其是发送短信验证码的需求是非常常见的需求,这就涉及到倒计时的使用,但是如果正在倒计时操作,app进入后台运行,倒计时会出现什么效果呢?那么本篇博文就来了解一下相关知识吧。
点击操作之后倒计时开始,然后App在后台运行,倒计时不停止继续执行。短信验证码 、时间倒计时等情况都适用这个需求。
iOS程序进入后台运行,10分钟之内就会被系统“杀死”,所以倒计时会停止执行。
方法一:根据记录开始的时间和获取当前时间进行时间差操作进行处理。监听进入前台、进入后台的消息,在进入后台的时候存一下时间戳,停掉定时器(系统会强制停止定时器);在再进入前台时,计算时间差。若剩余的时间大于时间差,就减去时间差,否则赋值剩余时间为0。(主流)
方法二:苹果只允许三种情况下的App在后台可以一直执行:音视频、定位更新、下载,若是直播、视频播放、地图类、有下载的应用可以这样使用,但是有些小需求就不需这样做。
方法三:通过向苹果的系统申请,在后台完成一个Task任务。
通过一个倒计时实例来展现一下运用,使用方法一来进行演示,方法二和方法三不再本篇进行介绍,如有需要自行了解解决。具体核心代码步骤如下所示:
@property (nonatomic, strong) NSTimer *timer;
@property (nonatomic, assign) int seconds; // 倒计时
@property (nonatomic, assign) NSTimeInterval timeStamp;
- (void)viewDidLoad {
[super viewDidLoad];
[self observeApplicationActionNotification];
}
#pragma mark --按钮点击事件--
- (void)brewBtnClick {
if (_timer) {
return;
}
// 给计时器赋值
_timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector: @selector(timerAction) userInfo:nilrepeats:YES];
[[NSRunLoop mainRunLoop] addTimer:_timer forMode:NSRunLoopCommonModes];
}
- (void)timerAction {
self.seconds --;
remainingTimeBtn.userInteractionEnabled = NO;
if (self.seconds <= 0) {
shapeLayer.strokeColor = [UIColor colorWithHexString:@"#77CAC6"].CGColor;
[_timer invalidate];
_timer = nil;
}
}
- (void)observeApplicationActionNotification {
[[NSNotificationCenter defaultCenter] removeObserver:self];
[[NSNotificationCenter defaultCenter] addObserver:self selector: @selector(applicationDidBecomeActive) name:UIApplicationDidBecomeActiveNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector: @selector(applicationDidEnterBackground) name: UIApplicationDidEnterBackgroundNotification object:nil];
}
- (void)applicationDidEnterBackground {
_timestamp = [NSDate date].timeIntervalSince1970;
_timer.fireDate = [NSDate distantFuture];
}
- (void)applicationDidBecomeActive {
NSTimeInterval timeInterval = [NSDate date].timeIntervalSince1970-_timestamp; //进行时间差计算操作
_timestamp = 0;
NSTimeInterval ret = _seconds - timeInterval;
if (ret > 0) {
_seconds = ret;
_timer.fireDate = [NSDate date];
} else {
_seconds = 0;
_timer.fireDate = [NSDate date];
[self timerAction];
}
}
代码图示:
通过以上的代码,在App进入前、后台时做一些计算和定时器操作,完成定时器在后台执行,倒计时不停止的效果。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。