Contents

useOptimizedDrawing(_:)

Specifies whether the window is to optimize focusing and drawing when displaying its views.

Declaration

func useOptimizedDrawing(_ flag: Bool)

Parameters

  • flag:

    If True, the window will optimize focusing and drawing for its views; if False, it will not, in which case, the window does not preserve the Z-ordering of overlapping views when an object explicitly sends Lockfocus() to a view and draws directly to it, instead of using the AppKit standard display mechanism.

Discussion

The optimizations may prevent sibling subviews from being displayed in the correct order—which matters only if the subviews overlap. You should always set flag to true when there are no overlapping subviews within the window. The default is false.

See Also

Methods