Override:
- (NSArray *)draggingImageComponents;
Apple uses it in its sample TableViewPlaygroud. I found it using br -n
"-[NSDraggingImageComponent initWithKey:]". lldb and breakpoints can help
you. Use hopper or class-dump to see method names (AppKit).
Marek.
On Fri, Dec 15, 2017 at 6:52 PM,
You probably want NSTableView
-dragImageForRowsWithIndexes:tableColumns:event:offset:
—Rob
> On Dec 15, 2017, at 10:52 AM, David Catmull wrote:
>
> In my table view, when you drag an item, the drag image it uses comes from
> the column cell where the drag started, rather than using the cell f
In my table view, when you drag an item, the drag image it uses comes from
the column cell where the drag started, rather than using the cell from the
first column where I have the icon and name. How do I make it use the first
column?
I'm looking at Apple's TableViewPlayground as an example, and t