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