In UIView animation blocks I can specify timing curves like UIViewAnimationCurveEaseOut and so on. Is there a way of providing an own timing function to core animation, which behaves different from the defaults?
+2
A:
No. UIView animations doesn't expose this setting. But you can use CAAnimation, where you could create a custom bezier curve timing function (CAMediaTimingFunction).
KennyTM
2010-05-12 11:46:30
Which kind of animation would be most sufficient to match the behavior of an default UIView animation block? Something like CABasicAnimation?
dontWatchMyProfile
2010-05-12 14:01:44
@mystify: Yes. _
KennyTM
2010-05-12 14:24:16