我一直在阅读有关如何在NSTextField上设置垂直对齐的各种选项.我希望文本显示在中心,并在
Swift中以编程方式进行.以下是我目前看到的事情:
> http://www.cocoabuilder.com/archive/cocoa/174994-repositioning-an-nstextfieldcell.html
> https://red-sweater.com/blog/148/what-a-difference-a-cell-makes
> Vertically Centre Text in NSSecureTextField with subclassing
> Get NSTextField contents to scale
> vertically align text in a CATextLayer?
我在Swift中尝试过的一件事是设置以下属性:
textField.usesSingleLineMode = true
这很难做到,因为Apple非常难以做到这一点.我通过继承NSTextFieldCell和ovrriding drawingRectForBounds:方法实现了它,如下所示:
原文链接:https://www.f2er.com/swift/318727.htmloverride func drawingRectForBounds(theRect: NSRect) -> NSRect { let newRect = NSRect(x: 0,y: (theRect.size.height - 22) / 2,width: theRect.size.width,height: 22) return super.drawingRectForBounds(newRect) }
这只是我的方式,我相信有更好的方法,我还不知道.这仅适用于TextFields中的标准字体大小(文本高度为22).这就是我硬编码的原因.还没想到,如果更改字体,如何获得单元格中的高度.
结果: