我想知道如何NSTextFieldCell
在 NetNewsWire 中画一个类似的。
我已经NSTextFieldCell
为组单元格子类化 a 并在我的PXSourceList's
dataCellForItem
.
源列表是基于单元格的。
我只是不知道如何绘制单元格。
我想知道如何NSTextFieldCell
在 NetNewsWire 中画一个类似的。
我已经NSTextFieldCell
为组单元格子类化 a 并在我的PXSourceList's
dataCellForItem
.
源列表是基于单元格的。
我只是不知道如何绘制单元格。
查看 Apple 示例“SourceView”,它包含一个名为 ImageAndTextCell 的 NSTextFieldCell 子类,它可以满足您的需求。
https://developer.apple.com/library/mac/#samplecode/SourceView/Introduction/Intro.html
虽然如果是我,我会改为使用基于视图的 OutlineView,并使用已经支持 imageView 的内置 NSTableCellView。