What is the best way to create an update loop in iOS where I can repeatedly call various modules that wish to update as quickly as possible? Is CADisplayLink essentially the best object to use when you want to know how much time has passed between screen refreshes and want to update these modules based on that elapsed time?

Update (to describe my goal): I need update loops to drive two modules: a physics simulation module and a particle engine. Basically, I am looking for a better alternative to using a repeating NSTimer set at a constant repeat interval. Each of them need to know the amount of time passed when their update callbacks are invoked in order to properly simulate the physics and the particle movement.

link|improve this question

59% accept rate
With "modules", do you mean UI views ? – DarkDust Mar 3 '11 at 7:00
Also, it would help if you described what you want to accomplish. So what is your overall goal ? Write a game with animations ? – DarkDust Mar 3 '11 at 7:01
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.