NSCollectionViewItem double-click action?
cocoa, nscollectionview, nscollectionviewitem, objective-c
Solution
You'd probably want to handle this in your `NSCollectionViewItem`, rather than the `NSCollectionView` itself (to work off your `NSTableView` analogy).
Problem
How do I set an action for when a user double clicks an `NSCollectionViewItem`. `NSTableView`, for example, has the `setDoubleAction` method. Is there something similar for `NSCollectionView`? Thanks