Contents

drawLinearGradient(_:start:end:options:)

Paints a gradient fill that varies along the line defined by the provided starting and ending points.

Declaration

func drawLinearGradient(_ gradient: CGGradient, start startPoint: CGPoint, end endPoint: CGPoint, options: CGGradientDrawingOptions)

Parameters

  • gradient:

    A gradient object.

  • startPoint:

    The coordinate that defines the starting point of the gradient.

  • endPoint:

    The coordinate that defines the ending point of the gradient.

  • options:

    Option flags (Drawsbeforestartlocation or Drawsafterendlocation) that control whether the fill is extended beyond the starting or ending point.

Discussion

The color at location 0 in the CGGradient object is mapped to the starting point. The color at location 1 in the CGGradient object is mapped to the ending point. Colors are linearly interpolated between these two points based on the location values of the gradient. The option flags control whether the gradient is drawn before the start point or after the end point.

See Also

Drawing Gradients and Shadings