I was wondering, can I use a CADisplayLink Timer instead of an NSTimer even though I’m not doing any animation?
I’d like to call a certain method much like when using an NSTimer, only just at a much higher frequency (60 Hz would be nice), so I was wondering if a CADisplayLink Timer would work even though the method simply does some calculations and not any animation…
P.S. I’m testing on an iPhone 4
I don’t see why not. You may even receive better performance from CADisplayLink because it is not performing any animation. The only problem you might run into is how the Apple Review Board will like your use of it.
I would suggest looking over the Class Reference along with the avTouch Sample Code provided before using it.