标签: objective-c
我的目标是显示自游戏开始以来经过的时间(这应该不断更新)。
我知道如何找到从开始到游戏结束所经过的时间。但我无法弄清楚如何使用秒表在屏幕上不断更新。
答案 0 :(得分:3)
使用
self.updateTimer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(你称之为更新显示以显示当前时间的方法)userInfo:nil重复:是];
将永远更新你的显示器