ios scheduledTimerWithTimeInterval表示一段时间

时间:2013-06-20 22:54:20

标签: ios nstimer

我想使用scheduledTimerWithTimeInterval来执行一段时间的定期任务,比如一小时。但是我如何在我的代码上实现。这是我的代码:

timer = [NSTimer scheduledTimerWithTimeInterval: 0.1
                                          target: self
                                        selector: @selector(doSomething:)
                                        userInfo: nil
                                         repeats: YES];

1 个答案:

答案 0 :(得分:5)

让我们假设一分钟。

这是一个简单的场景,

int remainingCounts;
NSTimer *timer;

timer = [NSTimer scheduledTimerWithTimeInterval:1 target:(self) selector:@selector(countDown) userInfo:nil repeats:YES];
remainingCounts = 60;   // int remainingCounts ;...

每秒调用一次方法。

-(void)countDown {
    NSLog(@"%d", remainingCounts);
    // Do Your stuff......
    if (--remainingCounts == 0) {
        //[self dismissViewControllerAnimated:YES completion:nil]; 
        [timer invalidate];
    }
}