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.