I've added an action as anonymous method to my gesture recognizer
UITapGestureRecognizer tapGesture = new UITapGestureRecognizer ();
tapGesture.AddTarget (() => HandleTap (tapGesture));
How can I remove the target? UIGestureRecognizer.Token
is needed.
RTFM is true here: