我需要调用一个方法,我的应用程序启动时,然后调用相同的方法每隔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秒的选项?