Contents

drawGlyphs(forGlyphRange:at:)

Draws the specified glyphs, which must lie completely within a single text container.

Declaration

func drawGlyphs(forGlyphRange glyphsToShow: NSRange, at origin: CGPoint)

Parameters

  • glyphsToShow:

    The range of glyphs that are drawn.

  • origin:

    The position of the text container in the coordinate system of the currently focused view.

Discussion

This method is called by NSTextView for drawing. You can override it to perform additional drawing, or to replace text drawing entirely, but not to change layout. You can call this method directly, but focus must already be locked on the destination view or image. This method expects the coordinate system of the view to be flipped.

This method draws the actual glyphs, including attachments, as well as any underlines or strikethoughs.

Performs glyph generation and layout if needed.

See Also

Related Documentation

Drawing