标签: iphone cocoa-touch
如何每隔x毫秒在视图控制器中执行一个方法?
答案 0 :(得分:7)
创建一个计时器,将您的视图和函数作为要调用的参数。或者,您可以将NSInvocation与NSTimer一起使用。
E.g。
[NSTimer scheduledTimerWithTimeInterval:0.1f target:myView selector:@selector(myMethod) userInfo:nil repeats:YES];