UIDocumentInteractionProbe Delegate

Definition

A delegate signature for determining whether a document operation should take place.

public delegate bool UIDocumentInteractionProbe(UIDocumentInteractionController controller, Selector action);
type UIDocumentInteractionProbe = delegate of UIDocumentInteractionController * Selector -> bool

Parameters

controller
UIDocumentInteractionController

The controller sending the message.

action
Selector

The action that is being probed.

Return Value

Whether the action should take place or not.

Remarks

Used by the UIDocumentInteractionController for the CanPerformAction and PerformAction hooks.

Applies to