0

I'm writing an app that should allow me to drag items from an NSTableView to another view (custom timeline view). This works perfectly as long as there is only one item in my NSTableView. The fist images shows one item being dragged from the table view.

enter image description here

However, as soon as there is more than one item in my table view I can no longer drag from it. It just selects that row. The second image shows me trying to drag from the table view with more than one item. enter image description here

Is there something I need to do to enable drag from the table view?

1 Answer 1

0

SOLVED. In my pasteboardWriterForRow delegate call I was returning nil instead of a valid object.

Not the answer you're looking for? Browse other questions tagged or ask your own question.