我想做这样的事情(在新的iTunes上):


如您所见,选中该行时,其“突出显示”状态是圆角的行。
我怎样才能实现这样的目标?

最佳答案

您需要继承NSTableview的子类并覆盖-highlightSelectionInClipRect:方法。

可以这样完成:

在Attributes Inspector中将tableView的突出显示模式从常规列表更改为Source列表:



现在,子类NSTableView像这样:

-(void)highlightSelectionInClipRect:(NSRect)theClipRect
{
    NSRange visibleRowIndexes = [self rowsInRect:theClipRect];
    NSIndexSet *selectedRowIndexes = [self selectedRowIndexes];
    NSUInteger endRow = visibleRowIndexes.location + visibleRowIndexes.length;
    NSUInteger row;

    for (row=visibleRowIndexes.location; row<endRow; row++)
    {
        if([selectedRowIndexes containsIndex:row])
        {
            NSRect rowRect = NSInsetRect([self rectOfRow:row], 3, 4);
            NSBezierPath *path = [NSBezierPath bezierPathWithRoundedRect:rowRect xRadius:4.0 yRadius:4.0];
            [[NSColor colorWithCalibratedRed:0.474 green:0.588 blue:0.743 alpha:1] set];
            [path fill];
        }
    }
}


结果:

10-08 07:23