I am trying to translate this code in my solution to enable a view to gracefully fade when clicked:
[UIView transitionWithView:button
duration:0.4
options:UIViewAnimationOptionTransitionCrossDissolve
animations:NULL
completion:NULL];
button.hidden = YES;
But I can't find the equivalent of transitionWithView
under UIView
in Xamarin, can someone advise?
I tried this for a different animation but it does not give the option of dissolving:
UIView.SetAnimationTransition(UIViewAnimationTransition.CurlDown, button, true);