How to create a NSMatrix of NSImageCell in Interface Builder in 10.6

interface-builder, objective-c, osx-snow-leopard, xcode

Solution

Just drag an instance of `NSImageView` into your view in IB. Select it and then choose `Layout > Embed Objects In > Matrix` from IB's menu.

Problem

How can I create a matrix (NSMatrix object) of NSImageCell cells (usually located in an NSImageView) in Interface Builder 3.2.1 (i.e. the one made for Snow Leopard?) In the "old days", you would drag an NSImageView, and then option-drag the corner of the control. It seemed to have stopped working in 3.2.1... Is there another way? Am I doing something wrong?

Original source