Contents

step(_:)

In a paused workflow, runs the next action in the workflow and then pauses again.

Declaration

@IBAction func step(_ sender: Any)

Parameters

  • sender:

    Object that initiated the step action.

Discussion

Stepping allows a workflow to be executed one action at a time. This is useful for ensuring that the workflow is doing what it’s supposed to do, as the results of each individual action can be inspected before moving on to the next.

See Also

Controlling the Workflow