Change Interval Of CADisplayLink
- by user3679109
I have replaced an NSTimer with a CADisplayLink. I have it working properly but it is running too slowly. How could I go about speeding this up? This is the code that I'm using:
ViewController.h (In {} with @interface:
CADisplayLink *displayLink;
ViewController.m (viewDidLoad):
displayLink = [CADisplayLink displayLinkWithTarget:self selector:@selector(onTimer)];
[displayLink addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSRunLoopCommonModes];
onTimer is the method that it is calling. So my question is how do I speed up how often this is being called?
Thanks