문제

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?

도움이 되었습니까?

해결책

Why do you want to change away from NSTimer?

The point of using CADisplayLink is so that animations can be timed according to the video refresh interval.

For a simple, non-repeating, call, NSTimer is perfectly valid.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top