I have a table of draggable rows. I'm subclassing NSImageCell to render an image, mapped via bindings.
How do I get a double-click event from this cell?
I have a table of draggable rows. I'm subclassing NSImageCell to render an image, mapped via bindings.
How do I get a double-click event from this cell?
I think you'd send a setDoubleAction:
message to the NSTableView, and in your double-click action method, use clickedRow
to find out which row was hit.