I have a property float a
and I want to interpolate between two values, say float min
and float max
, over some time interval (float t
seconds.)
Core Animation does something very much like this under the covers; can I leverage it for doing non-display work, or is there another library which does this in Cocoa Touch?
I could roll my own using an NSTimer but a) that's hard and b) I thought I'd check to see if there was an existent technique for doing this first.
Thanks