I have a viewbased tableView ;
- Some cells are group headers (defined in tableView(tableView: NSTableView, isGroupRow row: Int) -> Bool)
- I want to update the content of the text of these group cells when I add an item in the group.
My problem is that the update of the label is out of my control: it occurs only when tableView has to reload the cvell (after scrolling for instance), in tableView(tableView: NSTableView, viewForTableColumn tableColumn: NSTableColumn?, row: Int) -> NSView?
Is there a way to force the update of these cells (each time count of cells change for instance) ?