0

你好世界各地的开发人员:) 今天我有一个关于 NSOutlineView 自定义的问题,环境是:-OS X 10.7+ - 一个带有子类 NSTextFieldCell 的大纲视图

问题:我想为单元格选择自定义颜色结束渐变,我的第一种方法是覆盖该方法

-(NSColor *)highlightColorWithFrame:(NSRect)cellFrame inView:(NSView *)controlView

在 NSTextFieldCell 子类中,但结果是这样的:

在此处输入图像描述

渐变选择仍然保持蓝色,标签背景变为返回的颜色。如何更改整个单元格选择颜色(使用渐变?)


更新:

在继承 NSOutlineView 并覆盖该方法后:

- (void)highlightSelectionInClipRect:(NSRect)clipRect
    {
        NSRange        aVisibleRowIndexes  = [self rowsInRect:clipRect];
        NSIndexSet *    aSelectedRowIndexes = [self selectedRowIndexes];
        NSUInteger aRow = aVisibleRowIndexes.location;
        NSUInteger anEndRow = aRow + aVisibleRowIndexes.length;

        NSColor *aColor = MW_MENU_SELECTED_CELL_GB;

        [aColor set];

        // draw highlight for the visible, selected rows
        for (aRow; aRow < anEndRow; aRow++)
        {
            if([aSelectedRowIndexes containsIndex:aRow])
            {
                NSRect aRowRect = NSInsetRect([self rectOfRow:aRow], 2, 1);
                NSRectFill(aRowRect);
            }
        }
    }

现在我有正确的行为,但没有渐变,如何添加渐变(或背景图像到单元格?)

4

1 回答 1

1

我没有运气压倒一切highlightSelectionInClipRect:。相反,我覆盖了drawRow:clipRect:. 像这样的东西:

- (void)drawRow:(NSInteger)rowIndex clipRect:(NSRect)clipRect
{
    if ([self isRowSelected: rowIndex])
    {
        [self fillWithHighlightColor: [self rectOfRow: rowIndex]];
    }
    [super drawRow: rowIndex clipRect: clipRect];
}

fillWithHighlightColor:我自己的代码在哪里。

于 2013-10-24T17:20:46.177 回答