UIGestureProbe Delegate

Definition

A delegate signature used by the UIGestureRecognizer class to determine if a gesture can be initiated.

public delegate bool UIGestureProbe(UIGestureRecognizer recognizer);
type UIGestureProbe = delegate of UIGestureRecognizer -> bool

Parameters

recognizer
UIGestureRecognizer

The recognizer that is a candidate for recognizing the gesture.

Return Value

true if the gesture recognizer can proceed with interpreting the touches.

Applies to