-2

我想在 iOS 中的一个方法中编写一些代码,并且应该每 1 秒调用一次该方法。谁能帮我做到这一点。提前致谢。

4

1 回答 1

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

阅读NSTimer的 Apple 文档

于 2013-04-01T07:35:36.347 回答