When you drag a NSCollectionView to a view, a NSCollectionViewItem appears on the storyboard, floating around.
Imagine I drag several NScollectionViews to the same view. I will have a bunch of NSCollectionViewItems. How a collection view knows which NScollectionViewItem belongs to it? Is there a connection between the two that can be seen on interface builder? I don't see anything on interface builder? Where to do I see that?
EDIT: Apparently this seems to be a Xcode bug. When you add a NSCollectionView to the storyboard, it comes without a link to the NSCollectionViewItem and it seems to be impossible to connect the itemPrototype outlet between them.
After contacting Apple about bugs like this, their answer was: "this is a know issue with Storyboards on OS X. Use Xibs instead."
itemPrototype
reference outlet of anNSCollectionView
to anNSCollectionViewItem
sitting next to it in the same storyboard, and it won't connect. How did you do it? – Clifton Labrum