NSOUlineView 标题单元格字体
我正在尝试减小 NSOutlineView
(基于源列表视图)中标题单元格的字体大小。问题是使用 IB 对我不起作用(都修改 NSTextField
和 NSTextFieldCell
的字体)。
视图由 outlineView:viewForTableColumn:item:
使用 makeViewWithIdentifier:owner:
返回
有什么想法吗?
I'm trying to reduce the font size of the Header Cell in a NSOutlineView
(source-list view-based). The problem is that using IB doesn't work for me (both modifying the font for NSTextField
and NSTextFieldCell
).
The views are returned by outlineView:viewForTableColumn:item:
using makeViewWithIdentifier:owner:
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些步骤解决了问题。
1) 在IB中选择
NSOutlineView
。2) 在
尺寸检查器
中,为尺寸样式
选择自动
。如果已选择,请取消选择并再次选择(XCode bug?)现在您可以使用 IB 修改
NSTextFieldCell
(标题单元格和数据单元格)的字体。These steps solved the problem.
1) Select the
NSOutlineView
in IB.2) In the
Size Inspector
selectAutomatic
forSize Style
. If it is already selected, deselect and select it again (XCode bug?)Now you can modify the font for the
NSTextFieldCell
(Header Cells and Data Cells) using IB.