0

我对此进行了很多搜索并找到了很多解决方案,但没有一个适合我的情况。

我正在使用 NSTimer 并通过一个按钮激活它点击这里它工作正常。现在我在第二个按钮单击时使计时器无效,并在第三个按钮单击时再次启动它,但在第三个按钮单击时我的计时器不起作用。谁能告诉我我怎么了。

我正在使用的代码。

button1 点击:

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

button2 点击:

    if (timer != nil && [timer isValid])
    {
     [timer invalidate];
     timer=nil;
    }

button3 点击:

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

现在点击 button3 计时器不起作用。

4

1 回答 1

0

通过查看您的代码。它必须工作。做几个试验:

  1. 检查您的第三个按钮单击事件是否被调用。

  2. 检查你是否在timer=nil , [timer invalidate];其他地方做。

于 2013-08-09T07:23:49.043 回答