Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual guide of AppKit controls?

Is there a visual guide to the controls in Mac OS/X AppKit?

Take, for instance, the following control that appears at different places in XCode UI:

Unknown control

I don't know which AppKit control is that. Any ideas?


1 Answers

It looks like a series of NSRadioButton views in an NSMatrix. You can determine the former using Accessibility Inspector, which will tell you that these buttons are of the accessibility class AXRadioButton. You can determine the latter using f-script. (You'll need the new 10.7 injection workflow that isn't in 2.1 yet.)

like image 117
Rob Napier Avatar answered Nov 23 '25 23:11

Rob Napier