Contents

append(_:)

Appends the contents of the specified path object to the path.

Declaration

func append(_ bezierPath: UIBezierPath)

Parameters

  • bezierPath:

    The path to add to the receiver.

Discussion

This method adds the commands used to create the path in bezierPath to the end of the receiver’s path. This method does not explicitly try to connect the subpaths in the two objects, although the operations in bezierPath might still cause that effect.

See Also

Constructing a path