I have a custom view which needs to set a cursor depending on where the mouse is. I use [NSCursor set]
to set the cursor in a mouseMoved:
handler. This works on OS X 10.5, but most of the time not on 10.6. Sometimes the cursor changes, but it usually doesn't.
The problem is I have to set the cursor in response to a mouseMoved:
event, I can't register cursor rects or use a NSTrackingArea
and the updateCursor:
event. I am working on a Cocoa frontend for the NetSurf browser. The engine expects mouse movement events from the frontend. If the cursor is over a link or something that requires a different cursor the engine calls a function from the frontend to set the new cursor.
Any ideas of how to make this work on Snow Leopard?
Simply use NSCursor object with push and pop in mouseEnter and mouseExit