我需要在我的应用程序启动时调用一个方法,然后每 5 秒调用一次相同的方法。
我的代码很简单:
// Call the method right away
[self updatestuff:nil]
// Set up a timer so the method is called every 5 seconds
timer = [NSTimer scheduledTimerWithTimeInterval: 5
target: self
selector: @selector(updatestuff:)
userInfo: nil
repeats: YES];
计时器是否有一个选项,所以它会立即触发,然后每 5 秒触发一次?