Cocoa "Attribute Inspector" Interface Attribute Constructor

I am creating a Cocoa application and I need a panel similar to the "Attributes Inspector" in Interface Builder. Thus, with large tabs in the top and expandable / expandable groups. Does anyone know how I can do this?

This is an image of the attribute inspector:

Attributes Inspector http://developer.apple.com/documentation/DeveloperTools/Conceptual/XcodeQuickTour/Art/hello_win_attributes.jpg

So, I really want to make a window like the one shown in the image above.

+3
source share
3 answers

InspectorKit is FOSS on github.

+2
source

Cocoa. , .

: (Cocoa)

, , , , .

+2

I wrote some custom classes to do this - this turned out to be less work than I expected. I split it into two separate components that can be used independently: the first handles the icons at the top and switches the view, and the second handles the extensible panels: ViewSelectorBarInspectorpanel

My code is available on github and is licensed under BSD 2.

+1
source

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


All Articles