Hi all,
Cocoa, Mac OS X 10.6.
My app (a game) needs to determine if the mouse is down within a view, repeatedly, even if the mouse position doesn't change.
The problem:
mouseDownwill only be called the first time the mouse is pressed and held down. If the mouse is not moved at this point,mouseDraggedis not called, and no moremouseDownevents are generated.
Question: how do I determine that the mouse is still down after that initial (and only) mouseDown event?
Thanks.