Post

Replies

Boosts

Views

Activity

Reply to NSScrollPocket overlay appearing on scroll views in NSSplitViewController on macOS Tahoe
class NonePocketScrollView: NSScrollView { override func draw(_ dirtyRect: NSRect) { super.draw(dirtyRect) // Drawing code here. } override var automaticallyAdjustsContentInsets: Bool { get { false } set { } } override func addSubview(_ view: NSView) { let name = String(describing: type(of: view)) if name == "NSScrollPocket" { return } super.addSubview(view) } }
Topic: UI Frameworks SubTopic: AppKit
Sep ’25