如何更改 NSPathControl 的颜色

How to change color of NSPathControl

请看这张图:

我知道如何更改文字颜色:

  NSPathComponentCell *cell = [_pathControl pathComponentCells].firstObject;
  cell setTextColor:[NSColor redColor];

但是我也想改变箭头的颜色,有人知道如何实现吗?

不支持开箱即用 - 您需要自己推出。

或者查看各种第 3 方实现,例如 ITPathbar: https://www.cocoacontrols.com/controls/itpathbar

你试过修改NSPathControlItem/attributedTitle:

(限制:macOS 10.10+)

    for pathControlItem in pathControl.pathItems {
        let range =  NSMakeRange(0, pathControlItem.attributedTitle.length)
        let attributedTitle = NSMutableAttributedString(attributedString: pathControlItem.attributedTitle)
        attributedTitle.addAttribute(.foregroundColor, value: yourColor, range: range)
        pathControlItem.attributedTitle = attributedTitle
    }

或者尝试创建子类。(我没有测试)