Contents

draw(in:)

Draws the layer’s content using the specified graphics context.

Declaration

func draw(in ctx: CGContext)

Parameters

  • ctx:

    The graphics context in which to draw the content. The context may be clipped to protect valid layer content. Subclasses that wish to find the actual region to draw can call Boundingboxofclippath.

Discussion

The default implementation of this method does not do any drawing itself. If the layer’s delegate implements the draw(_:in:) method, that method is called to do the actual drawing.

Subclasses can override this method and use it to draw the layer’s content. When drawing, all coordinates should be specified in points in the logical coordinate space.

See Also

Providing the layer’s content