When it comes to getting the data of an NSTableView which was selected, one gets the selected row, and compares it to the item in the same position in the data source.
However, I am reading data from different XML files and displaying it according to certain selections done on screen.
I would like to get the data that the user has selected directly from the NSTableView.
I know that this goes against the MVC model and all that, but I would appreciate an answer or some hint on how to do this.
[[tableView dataSource] tableView:tableView objectValueForTableColumn:theColumn row:theRow]
. – Ken Thomases