Cocoa osx NSTableview 改变行高亮颜色

Cocoa osx NSTableview change row highlight color

在我的应用程序中,我有一个基于视图的 NSTableView,只有一列。行的突出显示颜色设置为常规(蓝色)。我需要将该颜色更改为我的自定义颜色。在界面生成器中,我尝试更改它,但唯一的选项是 "None, regular and source list"。

我尝试了这个 post 解决方案但没有成功:

我读到我必须使用这个委托方法,但我不知道如何使用它。

- (NSTableRowView *)tableView:(NSTableView *)tableView rowViewForRow:(NSInteger)row

我尝试用该方法绘制行,但我收到无效的上下文警告,并且该行仍然保持相同的高亮显示。 请 post 一个如何使用此委托方法的简单示例:

需要帮助。提前致谢。

如果您使用的是基于单元格的表格视图,请将 NSTableView selectionHighLightStyle 设置为 None NSTableView,并覆盖下面的 drawRow 示例

- (void)drawRow:(NSInteger)row clipRect:(NSRect)clipRect {
        NSColor* bgColor = Nil;
    // Set the color only when its first responder and key window
    if (self == [[self window] firstResponder] && [[self window] isMainWindow] && [[self window] isKeyWindow])
    {
        bgColor = [NSColor brownColor];
    }
    else
    {
        bgColor = [NSColor windowBackgroundColor];;
    }

    NSIndexSet* selectedRowIndexes = [self selectedRowIndexes];
    if ([selectedRowIndexes containsIndex:row])
    {
        [bgColor setFill];
        NSRectFill([self rectOfRow:row]);
    }
    [super drawRow:row clipRect:clipRect]; 
}

由此link.

MyNSTableRowView.h

#import <Cocoa/Cocoa.h>
@interface MyNSTableRowView : NSTableRowView
@end

MyNSTableRowView.m

#import "MyNSTableRowView.h"

@implementation MyNSTableRowView
- (id)init
{
    if (!(self = [super init])) return nil;
    return self;
}

- (void)drawSelectionInRect:(NSRect)dirtyRect {
     if (self.selectionHighlightStyle !=    NSTableViewSelectionHighlightStyleNone) {
     NSRect selectionRect = NSInsetRect(self.bounds, 2.5, 2.5);
     [[NSColor colorWithCalibratedWhite:.65 alpha:1.0] setStroke];
     [[NSColor colorWithCalibratedWhite:.82 alpha:1.0] setFill];
     NSBezierPath *selectionPath = [NSBezierPath bezierPathWithRoundedRect:selectionRect
                                                               xRadius:6 yRadius:6];
     [selectionPath fill];
     [selectionPath stroke];
     }
}
@end

AppDelegate.m

- (NSTableRowView *)tableView:(NSTableView *)tableView rowViewForRow:(NSInteger)row
{         
     MyNSTableRowView *rowView = [[MyNSTableRowView alloc]init];
     return rowView;
}

这是 user3065901 在 Swift 3 中的回答:

class MyNSTableRowView: NSTableRowView {

    override func drawSelection(in dirtyRect: NSRect) {
        if self.selectionHighlightStyle != .none {
            let selectionRect = NSInsetRect(self.bounds, 2.5, 2.5)
            NSColor(calibratedWhite: 0.65, alpha: 1).setStroke()
            NSColor(calibratedWhite: 0.82, alpha: 1).setFill()
            let selectionPath = NSBezierPath.init(roundedRect: selectionRect, xRadius: 6, yRadius: 6)
            selectionPath.fill()
            selectionPath.stroke()
        }
    }
}

NSTableViewDelegate:

func tableView(_ tableView: NSTableView, rowViewForRow row: Int) -> NSTableRowView? {
    return MyNSTableRowView()
}

在您的表格视图方法中添加以下行

目标C

[yourtableview setSelectionHighlightStyle:NSTableViewSelectionHighlightStyleNone];

Swift

yourtableview.selectionHighlightStyle = .none