I assume that you are using UIGestureRecognizer correctly?
If so, `TouchesBegan 'is not an event method , so you cannot assign a delegate to it.
public virtual void TouchesBegan (NSSet touches, UIEvent evt)
You can watch:
public UITouchEventArgs ShouldReceiveTouch; public UIGesturesProbe ShouldRecognizeSimultaneously; public UIGestureProbe ShouldBegin;
and Touches_GestureRecognizers .
source share