3

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 Answers1

1

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.)

Rob Napier
  • 286,113
  • 34
  • 456
  • 610
  • This is an excellent answer: I don't need a visual guide any more! Thanks! –  Dec 07 '11 at 17:49