I populated my NStableView
with tableView Controller and it's working fine. I only want to know why every time I am getting the data (Presented in table Cell) whenever the user hovers on a particular cell in a tableview, it starts displaying the data in console.
I found that this - (NSCell *)tableView:(NSTableView *)tableView dataCellForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row
calls every time and I stack traced using instruments and this method is taking a lot of memory.
Is there any way to stop this method drawing the data every time.