Contents

confirmationRequired(with:)

Creates an object whose resolution requires confirmation from the user before proceeding.

Declaration

class func confirmationRequired(with taskToConfirm: INTask?) -> Self

Parameters

  • taskToConfirm:

    The object that resolves the request but must be confirmed by the user.

Return Value

A new INTaskResolutionResult object.

Discussion

Use this method when you locate a single task but cannot determine with enough certainty that it is the one intended by the user. For example, you might ask for confirmation when the task’s title text does not match precisely. Provide an INTask object with as much information about the task as you have available.

See Also

Creating a Resolution Result Object