NSTextField上的自定义边框

问题描述 投票:3回答:3

我想自定义NSTextFields的边框。我已经搜索了一下,并且相当确定这需要在drawInterior(withFrame:in:)的NSTextFieldCell中完成,但是不确定如何。

特别是我只想要一个底边框,比正常边框稍粗。

swift cocoa appkit
3个回答
2
投票

您可能应该阅读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)
    }
}

这是结果Custom NSTextField Border


0
投票

您可以在文本字段中添加背景图片,并且不设置边框样式。


0
投票

向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)
  }
© www.soinside.com 2019 - 2024. All rights reserved.