NSTableColumn 上的 NSMatrix
是否可以将 NSMatrix 设置为 NSTableColumn 的单元格?如果可以的话我应该怎么做呢?
提前致谢。
Is it possible to set an NSMatrix as the cell of a NSTableColumn?. If possible, how should I do it?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您不能轻松地做到这一点,因为表列期望使用 NSCell 作为其数据单元格(以便它们可以在给定行绘制列的内容)。 NSMatrix 是一个类似的控件,它使用原型单元格进行多次绘制。
其次,有一个教程(找不到了)展示了如何使用 NSViews 作为 NSTableView 行。提示:如果您能够访问最新的预发布 API,您将获得惊喜。
第三,表格中的“单元格上的多列文本”听起来像是......多个文本列的完美工作。
您到底想做什么?您得到的信息越具体,我们就能提供更好的答案/建议。 :-)
First, you can't do this easily because table columns expect an NSCell to use as their data cell (so they can draw the column's contents at a given row). NSMatrix is a similar control that uses a prototype cell to draw many times.
Second, there was a tutorial out there (can't find it any more) that showed how to use NSViews as NSTableView rows. Hint: if you have access to the latest pre-release API, you will have a pleasant surprise.
Third, "multiple columns of text on a cell" in a table sounds like a perfect job for ... multiple text columns.
What exactly are you really trying to do? The more specific you get, the better answers / advice we can give. :-)