I call a doPoof method using NSTimer as following:
[NSTimer scheduledTimerWithTimeInterval:0.2 target:self selector:@selector(doPoof:) userInfo:myCALayer repeats:FALSE];
How to replace the above using CADisplayLink instead of an NSTimer?
|
I call a doPoof method using NSTimer as following:
How to replace the above using CADisplayLink instead of an NSTimer?
| |||
|
feedback
|
|
Why do you want to change away from NSTimer? The point of using For a simple, non-repeating, call, NSTimer is perfectly valid. | |||
feedback
|