Contents

cursorUpdate(with:)

Informs the receiver that the mouse cursor has moved into a cursor rectangle.

Declaration

func cursorUpdate(with event: NSEvent)

Parameters

  • event:

    An object encapsulating information about the cursor-update event (Nscursorupdate).

Discussion

Override this method to set the cursor image. The default implementation uses cursor rectangles, if cursor rectangles are currently valid.  If they are not, it calls super to send the message up the responder chain.

If the responder implements this method, but decides not to handle a particular event, it should invoke the superclass implementation of this method.

See Also

Responding to Other Kinds of Events