在 macOS Big Sur 下使用交替行颜色的 NSTableView 视觉故障

问题描述

我正在使用 NSTableView 并将 usesAlternatingRowBackgroundColors 设置为 true

只要我

  1. 添加许多列,例如 15
  2. 将 Cell Spacing 高度设置为 > 0

该表格显示一个视觉故障,其中交替行的高度分布不均:

enter image description here

这仅在 macOS Big Sur 下发生。 macOS Mojave 和 macOS Catalina 运行良好。我使用最新的 Xcode 12.4 尝试了几乎任何设置和样式的组合。

我的 ViewController 相当简单:

class ViewController: NSViewController {

    @IBOutlet weak var tableView: NSTableView!

    override func viewDidLoad() {
        super.viewDidLoad()

        for columnIndex in 0..<15 {
            let tableColumn = NSTableColumn(identifier: NSUserInterfaceItemIdentifier(rawValue: "\(columnIndex)"))
            tableColumn.title = "CustomColumn \(columnIndex)"
            tableColumn.width = 150
            tableView.addTableColumn(tableColumn)
        }
    }
}

而且Interface Builder中NSTableView的配置也很无聊,除了调整了单元格间距高度:

enter image description here

如果有人能够确认该问题并可能分享任何解决方法,那就太好了。

您可以在 https://github.com/fheidenreich/table-test

找到演示项目

解决方法

我在 MacOS 11.0 和 MacOS 11.2.1 上测试了示例项目,但无法重现故障。但这并不意外,因为代码本身看起来不错。

可能是中间 MacOS 版本或特定硬件软件组合的问题。如果问题仍然存在,可以尝试通过继承 NSTableView 来手动绘制背景。

class TableViewEx: NSTableView {
    
    public override func drawBackground(inClipRect clipRect: NSRect) {
        
        guard usesAlternatingRowBackgroundColors else {
            super.drawBackground(inClipRect: clipRect)
            return
        }
        
        backgroundColor.setFill()
        clipRect.fill()
        let effectiveRowHeight = rowHeight + self.intercellSpacing.height
        
        // This color requires 10.14+. There is an older,deprecated property on NSColor to get this value if needed.
        let altColor = NSColor.alternatingContentBackgroundColors.last ?? backgroundColor
        altColor.setFill()
        
        let rowIndex = Int((clipRect.minY / effectiveRowHeight).rounded(.down))
        
        for i in rowIndex..<Int.max {
            if i % 2 == 0 { continue }
            let rect = NSRect(
                x: clipRect.minX,y: CGFloat(i) * effectiveRowHeight,width: clipRect.width,height: effectiveRowHeight
            )
            rect.fill()
            if rect.maxY >= clipRect.maxY { break }
        }
    }
}

但即使在压倒性的平局中它仍然存在,我也不会感到惊讶。我不认为 Cocoa 代码与提议的代码有什么不同,因此它可能会在堆栈中呈现较低的错误。

,

对于那些选择在 ClipRect 中进行自己绘图的人来说,这是最好的方法。它有几个优点:

  1. 它只在 tableView 中没有出现实际 NSRowView 实例的那部分绘制行,因此效率更高。

  2. 当您滚动 tableView 的“越过边缘”时(使边缘开始“橡皮筋”),现代 NSTableView 样式不会在“橡皮筋区域”中绘制任何内容。这种方法遵循该约定。如果没有这个,ACTUAL 表格行将在您拖出边缘时停止绘制,但我们正在绘制的 FAKE 表格行不会,这看起来很奇怪。

override func drawBackground(inClipRect clipRect: NSRect)
{
    backgroundColor.setFill()
    clipRect.fill()
        
    let effectiveRowHeight: CGFloat = rowHeight + self.intercellSpacing.height
        
    let altColor: NSColor = NSColor.alternatingContentBackgroundColors.last ?? backgroundColor
    altColor.setFill()
    
    // Don't draw rows that the tableView already has
    let rowIndex = max(Int((clipRect.minY / effectiveRowHeight).rounded(.down)),numberOfRows)
        
    // How many rows do we need to draw?
    // Don't draw rows in the "rubber banding" zone if the user scrolls down past the end of the table,or horizontally off the side.
    // That matches how modern NSTableView draws NSRowView instances,so the table will look uniform during "rubber-banding"
    let maxRows = Int((self.bounds.size.height/effectiveRowHeight).rounded(.up))
    let tableOrigin: CGFloat = bounds.origin.x
    let tableWidth: CGFloat = bounds.size.width
        
    guard rowIndex < maxRows else {
        return
    }
        
    for i in rowIndex ..< maxRows
    {
        if i % 2 != 0
        {
            let rect = NSRect(x: tableOrigin,y: (CGFloat(i) * effectiveRowHeight),width: tableWidth,height: effectiveRowHeight)
            rect.fill()
        }
    }
}