I apply the animation to the UIView object, the animation plays normally, but at the end the object becomes the same coordinates. Can someone know what's the matter?
var anim = CABasicAnimation.FromKeyPath("transform.translation.y"); anim.Duration = 1.0; anim.From = NSNumber.FromFloat(1); anim.To = NSNumber.FromFloat(100); anim.RepeatCount = 0; bookmarksView.Layer.AddAnimation(anim, "bmViewAnim");