I am new to the Mac. I am trying to update a particular cell in NSTableView without using -reloadData, as -reloadData updates the whole table. I have t
-reloadData
Have a look at reloadDataForRowIndexes:columnIndexes: method. To update a single cell the following should work:
reloadDataForRowIndexes:columnIndexes:
[yourTable reloadDataForRowIndexes:[NSIndexSet indexSetWithIndex:row] columnIndexes:[NSIndexSet indexSetWithIndex:column]];