NSTableView tooltip with a view based table?

2012-02-01 Thread Andrew
I have a view based NSTableView using an NSArrayController with NSDictionary items as rows. I would like to display a tooltip for each row as the Description key from my dictionaries. I have tried using the table delegate method: - (NSString *)tableView:(NSTableView *)aTableView

Re: NSTableView tooltip with a view based table?

2012-02-01 Thread Tim Schröder
It actually works with view-based NSTableViews. I'm not using NSArrayController but implement - (NSView *)tableView:(NSTableView *)aTableView viewForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row where I use this code: NSTableCellView *result; result