-1

我有一个 UILabel,我想将它更新为倒数计时器。目前,我正在使用 NSTimer 在分配的非活动时间过去后执行方法。我从这个 SO 线程中找到了设置所需 NSTimer 的代码。我正在使用 Chris Miles 在应用程序的一个视图控制器中发布的示例代码,并且当空闲时间达到kMaxIdleTimeSeconds.

但是,我希望通过使用剩余空闲时间更新视图控制器中的 UILabel 来进一步采用 Chris Miles 发布的代码示例。我应该使用完全独立的 NSTimer 来执行此操作,还是有办法在注销前使用当前 NSTimer 剩余的空闲时间更新 UILabel?

应用程序的视图控制器实现文件如下所示,

#import "ViewControllerCreate.h"
#import "math.h"

@interface ViewControllerHome ()

#define kMaxIdleTimeSeconds 20.0

@implementation ViewControllerHome

@end

- (void)viewDidLoad
{

// 5AUG13 - idle time logout
    [self resetIdleTimer];

    int idleTimerTime_int;

    idleTimerTime_int = (int)roundf(kMaxIdleTimeSeconds);

    _idleTimerTime.text = [NSString stringWithFormat:@"%d secs til",idleTimerTime_int];

}

- (void)viewDidUnload
{
[self setIdleTimerTime:nil];
    // set the idleTimer to nil so the idleTimer doesn't tick away on the welcome screen.
    idleTimer = nil;
    [super viewDidUnload];
}

#pragma mark -
#pragma mark Handling idle timeout

- (void)resetIdleTimer {
    if (!idleTimer ) {
        idleTimer = [NSTimer scheduledTimerWithTimeInterval:kMaxIdleTimeSeconds
                                                      target:self
                                                    selector:@selector(idleTimerExceeded)
                                                    userInfo:nil
                                                    repeats:YES];
    }
    else {
        if(fabs([idleTimer.fireDate timeIntervalSinceNow]) < kMaxIdleTimeSeconds-1.0) {
            [idleTimer setFireDate:[NSDate dateWithTimeIntervalSinceNow:kMaxIdleTimeSeconds]];
        }
    }
}

- (void)idleTimerExceeded {
    NSLog(@"lets see what happens");
    [idleTimer invalidate];
    [self logout:nil];
    [self resetIdleTimer];
}

// method is fired when user touches screen.
- (UIResponder *)nextResponder {
    [self resetIdleTimer];
    return [super nextResponder];
}

@end
4

1 回答 1

1

我根本不会使用您发布的代码。为什么不以最大空闲时间启动标签,然后每秒调用一次计时器的操作方法,并从标签的文本的 intValue 中减去 1。当标签的值达到 0 时,执行您需要执行的操作,并使计时器无效。

像这样的东西:

- (void)viewDidLoad {
      [super viewDidLoad];
      self.label.text = @"1000";
      [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(countDown:) userInfo:nil repeats:YES];
}

-(void)countDown:(NSTimer *) aTimer {
      self.label.text = [NSString stringWithFormat:@"%d",[self.label.text  intValue] - 1];
      if ([self.label.text isEqualToString:@"0"]) {
           //do whatever
           [aTimer invalidate];
      }
}
于 2013-08-06T19:10:57.857 回答