I have created a custom view that is intended to be loaded in some different windows. ActionWidgets is a subclass of NSViewController, complete with its own xib file and its own widget contents.
In a window where it is used, I have created an object for it with Interface Builder, and I've carefully set its xib file and its connections, to both its NSView widget in that window, and to an ActionWidgets IBOutlet variable in the window's owner class.
But the ActionWidgets widgets don't get loaded into that NSView widget, despite all that I've tried. Its methods awakeFromNib() and viewDidLoad() get called, and nibName has the right nib name, so it ought to work.
What else might I need to do?