在目标c中创建一个倒数计时器(iPhone开发)

时间:2012-02-16 10:45:10

标签: iphone objective-c ios timer countdowntimer

  

可能重复:
  How do I use NSTimer

我想创建一个计时器:当用户点击按钮时,计时器启动。在(例如)两秒钟之后,计时器停止/重置并执行动作。

我一直在寻找NSTimer而没有找到合适的方法,以及如何以正确的方式设置它。

提前,谢谢你的帮助!

1 个答案:

答案 0 :(得分:2)

- (IBAction)buttonPressed:(id)sender
{
    [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(timerExpired) userInfo:nil repeats:NO];
}

- (void)timerExpired
{
    NSLog(@"Your two seconds are up!");
}