Is it possible to create an animation with increasing speed? Something like accelerated animation.

I have some code but cannot find a way how to implement it. Googling also not helpful.

CABasicAnimation animation =  CABasicAnimation.FromKeyPath("opacity");
animation.To = NSNumber.FromFloat( 0.1f );
animation.Duration = 1.4f;
animation.Delegate = new ExponencialSpeedAnimationDelegate();
animation.RepeatCount = 3;
this.Layer.AddAnimation(animation, "opacity");
link|improve this question

69% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Try

animation.TimingFunction = CAMediaTimingFunction.FromName (CAMediaTimingFunction.EaseIn);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.