I am currently using CADisplayLink to perform some specific deceleration animation. I set the frameInterval to 1. I have seen some open source projects just use 1/60 second as time delta between frame updates. I found there is also a timestamp method available, however it is in mach format. Which one should I use, can I assume all the iPhone refresh rate is 60hz, and hence safe to use 1/60? If I use timestamp method, how should I convert it to seconds?
Many thanks in advance.