如何在iOS中每1秒自动调用一个方法。

时间:2013-04-01 07:25:59

标签: ios

我想在iOS中的方法中编写一些代码,并且应该每1秒调用一次该方法。 任何人都可以帮我这样做。 在此先感谢。

1 个答案:

答案 0 :(得分:3)

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

阅读NSTimer

的Apple文档