How to create iPhoto as an interface

I'm trying to create an application like iPhoto, which uses an array of objects that I want to display with my thumb along with the caption at the bottom of each thumb. How to display objects like iPhoto?

+3
source share
1 answer

See NSCollectionView / NSCollectionViewItem .

The Builder interface has another tool palette called the Image Kit . You must enable the plugin in IB settings (Plug-ins palette). Then, in the object library, select a set of images to view the controls that it offers. IKImageBrowserView provides a ready-made control (with the ability to display titles), but I do not consider it as flexible as NSCollectionView / Item.

+4
source

Source: https://habr.com/ru/post/1755096/


All Articles