- duration
- Duration in seconds for the animation.
- animation
- Code that contains the changes that you will apply to your view.
This uses the CurveEaseOut and TransitionNone flags for the animation.
C# Example
// Animates hiding the label by setting the alpha to zero over three seconds.
UIView.Animate (3, () => { label.Alpha = 0; });