Hello list!
I'm trying to mimic custom UITableView cells on my Mac OS X app. There is no decent material on creating custom cells for NSTableView, so I'm mimicking it with NSCollectionView and custom views (max cols - 1). Purpose - a container with list of rows/views representing an array of objects and supported multiple selection.
Here's my dilemma - should I work with NSCollectionView and reimplement all the multiple-selection/delegate methods that NSTableView support or should I hack my way through with trying to implement custom NSCell with custom views for the NSTableView?
I'm looking for some guidelines on how should I tackle this situation.
--
All the best,
Eimantas Vaičiūnas