Problem retrieving NSCell data via [NSTableColumn dataCellForRow]
I am trying to retrieve a specific NSCell
开发者_StackOverflowdata from an NSTableView
through [NSTableColumn dataCellForRow]
but every time it shows different value for same row and same column. The data source remains the same at all time. The NSTableView
is bound to an NSArrayController
.Please if anyone can suggest a better way to do it correctly. And I don't want to implement those delegate methods. Let me know if you require more information.
Regards
Well, this is not a good idea to get data from a cell. Cells represent View concept in Model-View-Controller paradigm. You should be able to access all the data that a cell can access, so get it from the primary data source.
精彩评论