我想自定义NSTextFields的边框。我已经搜索了一下,并且相当确定这需要在drawInterior(withFrame:in:)
的NSTextFieldCell中完成,但是不确定如何。
特别是我只想要一个底边框,比正常边框稍粗。
您可能应该阅读NSCell
的文档。它表示必须在draw(withFrame:in)
函数中绘制边框,并且如果覆盖drawInterior(withFrame:in:)
,则必须调用draw(withFrame:in)
。另外,您必须覆盖cellSize
并返回考虑新边框的适当大小。我将示例更新为完整的解决方案。在Github
/**
Creates an custom border, that is just a line underneath the NSTextField.
*/
class CustomBorderTextFieldCell: NSTextFieldCell {
// How thick should the border be
let borderThickness: CGFloat = 3
// Add extra height, to accomodate the underlined border, as the minimum required size for the NSTextField
override var cellSize: NSSize {
let originalSize = super.cellSize
return NSSize(width: originalSize.width, height: originalSize.height + borderThickness)
}
// Render the custom border for the NSTextField
override func draw(withFrame cellFrame: NSRect, in controlView: NSView) {
// Area that covers the NSTextField itself. That is the total height minus our custom border size.
let interiorFrame = NSRect(x: 0, y: 0, width: cellFrame.width, height: cellFrame.height - borderThickness)
let path = NSBezierPath()
path.lineWidth = borderThickness
// Line width is at the center of the line.
path.move(to: NSPoint(x: 0, y: cellFrame.height - (borderThickness / 2)))
path.line(to: NSPoint(x: cellFrame.width, y: cellFrame.height - (borderThickness / 2)))
NSColor.black.setStroke()
path.stroke()
// Pass in area minus the border thickness in the height
drawInterior(withFrame: interiorFrame, in: controlView)
}
}
您可以在文本字段中添加背景图片,并且不设置边框样式。
向NSTableHeaderCell添加此代码
override func draw(withFrame cellFrame: NSRect,
in controlView: NSView) {
let path = NSBezierPath()
path.lineWidth = borderWidth
// Line width is at the center of the line.
path.move(to: NSPoint(x: cellFrame.minX, y: cellFrame.minY))
path.line(to: NSPoint(x: cellFrame.maxX, y: cellFrame.minY))
NSColor.black.setStroke()
path.stroke()
self.drawInterior(withFrame: cellFrame, in: controlView)
}