更改NSTextField的边框颜色

时间:2013-09-02 07:47:22

标签: objective-c cocoa nstextfield border-color

我想更改NSTextField对象的边框颜色,但我无法实现它。

我已经尝试了很多解决方案EX:是子类,画背景......

是否有人可以解决此问题或分享任何想法?

请告诉我。非常感谢。

4 个答案:

答案 0 :(得分:13)

使用NSBezierPath

- (void)drawRect:(NSRect)dirtyRect
{
    NSPoint origin = { 0.0,0.0 };
    NSRect rect;
    rect.origin = origin;
    rect.size.width  = [self bounds].size.width;
    rect.size.height = [self bounds].size.height;

    NSBezierPath * path;
    path = [NSBezierPath bezierPathWithRect:rect];
    [path setLineWidth:2];
    [[NSColor colorWithCalibratedWhite:1.0 alpha:0.394] set];
    [path fill];
    [[NSColor redColor] set]; 
    [path stroke];

    if (([[self window] firstResponder] == [self currentEditor]) && [NSApp isActive])
    {   
        [NSGraphicsContext saveGraphicsState];
        NSSetFocusRingStyle(NSFocusRingOnly);
        [path fill]; 
        [NSGraphicsContext restoreGraphicsState];
    }
    else
    {
        [[self attributedStringValue] drawInRect:rect];
    }
}

输出:

enter image description here

enter image description here

答案 1 :(得分:1)

您无需子类即可尝试CALayer

self.wantsLayer = true
self.layer?.borderColor = NSColor.red.cgColor
self.layer?.borderWidth = 1

答案 2 :(得分:0)

对我来说,Parag的回答导致了一些奇怪的文本字段绘制,所以我最终得到了这个简单的代码(基于他的回答):

- (void)drawRect:(NSRect)dirtyRect {
    [super drawRect:dirtyRect];

    if (!self.borderColor) {
        return;
    }

    NSPoint origin = { 0.0,0.0 };
    NSRect rect;
    rect.origin = origin;
    rect.size.width  = [self bounds].size.width;
    rect.size.height = [self bounds].size.height;

    NSBezierPath * path;
    path = [NSBezierPath bezierPathWithRect:rect];
    [path setLineWidth:2];
    [self.borderColor set];
    [path stroke];
}

答案 3 :(得分:0)

Parag的答案的

SWift 5 版本,但增加了用户定义标题和边框颜色的功能。

fileprivate class URLField: NSTextField {
    var title : String?
    var borderColor: NSColor?

    override func mouseDown(with event: NSEvent) {
        super.mouseDown(with: event)
        if let textEditor = currentEditor() {
            textEditor.selectAll(self)
        }
    }

    convenience init(withValue: String?, modalTitle: String?) {
        self.init()

        if let string = withValue {
            self.stringValue = string
        }
        if let title = modalTitle {
            self.title = title
        }
        self.cell?.controlView?.wantsLayer = true
        self.cell?.controlView?.layer?.borderWidth = 1
        self.lineBreakMode = .byTruncatingHead
        self.usesSingleLineMode = true
    }

    override func draw(_ dirtyRect: NSRect) {
        super.draw(dirtyRect)

        if let color = borderColor {
            ///self.layer?.borderColor = color.cgColor
            let path = NSBezierPath.init(rect: frame)
            path.lineWidth = 1
            color.setStroke()
            path.stroke()

            if self.window?.firstResponder == self.currentEditor() && NSApp.isActive {
                NSGraphicsContext.saveGraphicsState()
                NSFocusRingPlacement.only.set()
                NSGraphicsContext.restoreGraphicsState()
            }
        }
    }

    override func viewDidMoveToWindow() {
        super.viewDidMoveToWindow()

        if let title = self.title {
            self.window?.title = title
        }

        // MARK: this gets us focus even when modal
        self.becomeFirstResponder()
    }
}