1

我的目标是显示自游戏开始以来经过的时间(这应该不断更新)。

我知道如何找到从游戏开始到结束所经过的时间。但我不知道如何用秒表在屏幕上不断更新。

4

1 回答 1

3

启动计时器

self.updateTimer = [NSTimer scheduledTimerWithTimeInterval:1 target:self 选择器:@selector(无论你调用了更新显示以显示当前时间的方法) userInfo:nil repeats:YES];

将每秒更新您的显示

于 2012-04-30T16:29:18.070 回答