Contents

cacheDisplay(in:to:)

Draws the specified area of the view, and its descendants, into a provided bitmap-representation object.

Declaration

func cacheDisplay(in rect: NSRect, to bitmapImageRep: NSBitmapImageRep)

Parameters

Discussion

You are responsible for initializing the bitmap to the desired configuration before calling this method. However, once initialized, you can reuse the same bitmap multiple times to refresh the cached copy of your view’s contents.

The bitmap produced by this method is transparent (that is, has an alpha value of 0) wherever the view and its descendants do not draw any content.

See Also

Drawing the View’s Content