tags:

views:

56

answers:

1

Hello, I'm trying to create a iPhoto like application, where using an array of objects I want to display a thumb along with a title at the bottom of each thumb. How do I display objects like iPhoto does?

+2  A: 

Have a look at NSCollectionView / NSCollectionViewItem.

There is another tool palette in Interface Builder called Image Kit. You have to enable the plugin in IB's preferences (the Plug-ins palette). Then, under the object library, select the Image Kit to see the controls it offers. IKImageBrowserView gives you a ready-made control (with the ability to show titles) but I don't think it's as flexible as NSCollectionView/Item.

Joshua Nozzi
I think your answer is enough for me. Thank you!
Oscar Del Ben
You're welcome. I went ahead and added the information for Image Kit, to which I was referring earlier.
Joshua Nozzi