欢迎光临
我们一直在努力

iOS开发之UITableViewCell可暂停倒计时

建站超值云服务器,限时71元/月

iOS开发之UITableViewCell可暂停倒计时

项目介绍:

前言最近开发中,用到了UITableViewCell倒计时功能,这里将这部分功能分离出来,供大家参考。1.原理考虑到APP性能,这里只创建一个定时器,定时刷新当前正在显示的UITableViewCell,使用Model记录剩余倒计时时间和当前UITableViewCell是否暂停。2.核心代码创建定时器考虑到方便和不需要销毁,这里定时器使用GCD—>GCD定时器封装OC&Swift

  1. self.timer = [[CLGCDTimer alloc] initWithInterval:1 delaySecs:0 queue:dispatch_get_main_queue() repeats:YES action:^(NSInteger actionTimes) {
  2.                 __typeof(&*weakSelf) strongSelf = weakSelf;
  3.                 strongSelf.actionTimes = actionTimes;
  4.                 [strongSelf reloadVisibleCells];
  5.             }];
  6.             [self.timer start];

复制代码刷新当前正在显示的UITableViewCell这里只对正在显示的UITableViewCell进行操作,找出当前正在显示的UITableViewCell对应的数据Model,对数据源进行修改后刷新UITableView。

  1. – (void)reloadVisibleCells {
  2.     for (CLCountdownCell *cell in self.tableView.visibleCells) {
  3.         NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
  4.         CLCountdownModel *model = [self.arrayDS objectAtIndex:indexPath.row];
  5.         model.actionTimes = self.actionTimes;
  6.         model.leaveTime = self.leaveTime;
  7.         if (model.isPause) {
  8.             continue;
  9.         }
  10.         cell.model = model;
  11.     }
  12. }

复制代码Model数据修正因为只修改了当前正在显示的UITableViewCell对应Model的数据源,所以滑动出来的UITableViewCell对应Model数据源并不正确,这里在UITableViewCell即将显示的时候修正对应数据源。

  1. – (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
  2.     CLCountdownModel *model = [self.arrayDS objectAtIndex:indexPath.row];
  3.     model.actionTimes = self.actionTimes;
  4.     model.leaveTime = self.leaveTime;
  5.     if (!model.isPause) {
  6.         CLCountdownCell *countdownCell = (CLCountdownCell *)cell;
  7.         countdownCell.model = model;
  8.     }
  9. }

复制代码记录暂停状态通过修改对应UITableViewCell所在数据Model,记录当前UITableViewCell暂停状态,达到暂停效果。这里需要注意记录暂停当时的时间以及重新开始的时间。

  1. – (void)setIsPause:(BOOL)isPause {
  2.     if (isPause) {
  3.         self.pauseTime = self.remainingTime;
  4.         self.startTime = 0;
  5.     }else {
  6.         _isPause = isPause;
  7.         self.startTime = self.remainingTime;
  8.     }
  9.     _isPause = isPause;
  10. }
  11. – (NSInteger)remainingTime {
  12.     if (_isPause) {
  13.         return self.pauseTime;
  14.     }else {
  15.         if (self.pauseTime != 0 && self.startTime != 0) {
  16.             return self.countdownTime – self.actionTimes + self.pauseTime – self.startTime – self.leaveTime;
  17.         }else {
  18.             return self.countdownTime – self.actionTimes – self.leaveTime;
  19.         }
  20.     }
  21. }

复制代码APP进入后台记录当APP进入后台,需要记录当前时间,当再次进入前台的时候,需要减去离开时间,这样即使进入后台也不会影响到倒计时,这里考虑到进入后台期间修改时间等操作,直接使用系统运行时间进行记录。

  1. ///系统当前运行了多长时间
  2. ///因为两个参数都会受用户修改时间的影响,因此它们想减的值是不变的
  3. + (NSTimeInterval)uptimeSinceLastBoot {
  4.     //获取当前设备时间时间戳 受用户修改时间影响
  5.     struct timeval now;
  6.     struct timezone tz;
  7.     gettimeofday(&now, &tz);
  8.     //获取系统上次重启的时间戳 受用户修改时间影响
  9.     struct timeval boottime;
  10.     int mib[2] = {CTL_KERN, KERN_BOOTTIME};
  11.     size_t size = sizeof(boottime);
  12.     double uptime = -1;
  13.     if (sysctl(mib, 2, &boottime, &size, NULL, 0) != -1 && boottime.tv_sec != 0) {
  14.         //获取上次启动时间成功
  15.         //秒
  16.         uptime = now.tv_sec – boottime.tv_sec;
  17.         //微秒
  18.         uptime += (double)(now.tv_usec – boottime.tv_usec) / 1000000.0;
  19.     }
  20.     return uptime;
  21. }

复制代码监听APP进入后台和进入前台通知,进行记录。

  1. – (void)addNotification {
  2.     [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillResignActive:)
  3.                                                  name:UIApplicationWillResignActiveNotification object:nil];
  4.     [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidBecomeActive:)
  5.                                                  name:UIApplicationDidBecomeActiveNotification object:nil];
  6. }
  7. – (void)applicationWillResignActive:(NSNotification *)notification {
  8.     self.resignSystemUpTime = [NSDate uptimeSinceLastBoot];
  9.     [self.timer suspend];
  10. }
  11. – (void)applicationDidBecomeActive:(NSNotification *)notification {
  12.     self.becomeSystemUpTime = [NSDate uptimeSinceLastBoot];
  13.     self.leaveTime += (NSInteger)floor(self.becomeSystemUpTime – self.resignSystemUpTime);
  14.     [self.timer resume];
  15. }

复制代码3.效果图这里数据源创建了10万,因为只有一个定时器,并且只刷新当前正在显示的UITableViewCell,所以滑动起来并不会有任何卡顿。4.总结UITableViewCell倒计时代码并不多,只是需要注意一些细节,记录对应时间和状态。更多细节请参考文章对应Demo—->CLDemo如有帮助,欢迎Star。

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » iOS开发之UITableViewCell可暂停倒计时
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址