I managed to add a resizeable NSTextField to NSToolbar with the following code:
let item = NSToolbarItem(itemIdentifier: .titleItem) /* Or any other identifier */
let field = NSTextField() /* Do not use one of the new initialisers! */
field.isBordered = false /* This is essential */
field.lineBreakMode = .byTruncatingTail
item.view = field
Topic:
UI Frameworks
SubTopic:
AppKit
Tags: