I'm trying to create a vertical collection view Flow layout whose items size automatically with a single column. I've read the AppKit release notes, the updated documentation, and the headers for the various classes. I've watched the 2015 WWDC videos (NSCollectionView and AutoLayout Mysteries 1 & 2). The NSCollectionViewItem subclass represents an auto-layout-compiant, self-vertically-sizing text view (that, incidentally, auto-sizes great in a stack view, even during editing, so it's not an auto-layout issue as far as I can tell).
I've verified the collection view items are my custom subclass and I can see they're loaded with the correct information (text/image) but their self-sizing is ignored. I first tried setting the collection view's collectionViewLayout property to an instance of NSCollectionViewFlowLayout that I had configured with a non-zero estimatedItemSize (which the headers say should allow for cells that self-size via preferredLayoutAttributesFittingAttributes, which can be overridden in the collection view item subclass, but I'm not sure what to do with it).
At this point, I'm completely stuck. Any guidance would be appreciated.
Note: I'm only pursuing this because, after getting my hopes up with the auto-sizing table cell height comment (that turned out only to apply to UITableView), I'm trying to find an "easy" way around for OS X.