标签: ios
我想在iOS中的方法中编写一些代码,并且应该每1秒调用一次该方法。 任何人都可以帮我这样做。 在此先感谢。
答案 0 :(得分:3)
[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(thisIsCalledEvery1Second:) userInfo:nil repeats:YES];
阅读NSTimer