通过 [NSTableColumn dataCellForRow] 检索 NSCell 数据时出现问题
我试图通过 [NSTableColumn dataCellForRow]
从 NSTableView
检索特定的 NSCell
数据,但每次它显示同一行和相同的不同值柱子。数据源始终保持不变。 NSTableView
绑定到 NSArrayController
。如果有人可以建议更好的方法来正确执行此操作,请这样做。我不想实现那些委托方法。如果您需要更多信息,请告诉我。
问候
I am trying to retrieve a specific NSCell
data 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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,从单元格获取数据并不是一个好主意。单元代表模型-视图-控制器范式中的视图概念。
您应该能够访问单元格可以访问的所有数据,因此从主数据源获取它。
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.