Skip to content

Instantly share code, notes, and snippets.

View AbodiDawoud's full-sized avatar
:octocat:

Abodi AbodiDawoud

:octocat:
View GitHub Profile
@AbodiDawoud
AbodiDawoud / DividerOfSplitView.swift
Created March 16, 2026 04:12 — forked from usagimaru/DividerOfSplitView.swift
Get NSSplitView’s divider view from a subclass (customize divider height and color)
import Cocoa
class SplitView: NSSplitView {
override var dividerThickness: CGFloat {
50
}
override var dividerColor: NSColor {
NSColor.red