I need to have a view that stacks its
subviews in top of each other. Like a TableView. It gets its
represented Objects from an NSArrayController, and assigns it to some
View that it then adds as a subview. It also cares about the
selection, scrolling and so on. But the difficult point is that those
views can have different heights, dependent on their
representedObject.
I did something like that.
It borrows some concepts from NSCollectionView. Right now you need to
assign an array of objects manually, but I guess creating a binding
should not be to difficult. It also does not use any animations.