I'm building a macOS app with SwiftUI, and I'm trying to remove (or even cover up) the border added to a List
item when I right-click it.
Here it is by default:
Now with a right-click and a contextMenu
view modifier:
I figured this is an NSTableView
quirk, so I tried the approaches in these three Stack Overflow posts:
- Customize right click highlight on view-based NSTableView
- NSTableView with menu, how to change the border color with right click?
- Disabling the NSTableView row focus ring
- NSTableView: blue outline on right-clicked rows
I couldn't get any of those to work, and that may be due to the fact that I can't subclass an NSTableView
, but can only override its properties and methods with an extension
. Here's what I have so far that successfully removes the default table background and such:
extension NSTableView{
open override func viewDidMoveToWindow() {
super.viewDidMoveToWindow()
//Remove default table styles
backgroundColor = NSColor.clear
enclosingScrollView!.drawsBackground = false
selectionHighlightStyle = .none
}
}
Is there any way to remove that right-click border in SwiftUI? I'm even open to covering it with other views, but I can't seem to draw SwiftUI views in that space around the table cell.
I found a workaround for this. I put my
List
in aZStack
and then set itsopacity
to zero. I then built out a fully custom version of the same list, but usingLazyVStack
:Each list is bound to the same model, so if I click a
message
to select it in the custom UI, the same thing gets selected in the invisibleList
. All the keyboard shortcuts that come with table use in aList
look like they are working on the custom version.So how does this solve my original problem? You can right-click on the custom
MessageItemView
and the default ring around the cell is invisible, but thecontextMenu
still works (it's defined inside myMessageItemView
).This isn't as elegant as I'd like, but it's nice to have 100% control over the UI but still get all the keyboard controls that come for free with a
List
.