views:

43

answers:

2

as topic, I want see the inner constructs of a special view on Mac, like the class name,and hierarchy , etc. as we know, on Windows, we can use Spy app for this purpose, if any the same feature app can be use on Mac ?

thanks for you reply.

Regards

+3  A: 

Yes, you're looking for F-Script. Have a look at the F-Script injection service on the downloads page.

Rob Keniger
thanks Rob. that looks great :-)
Robin
+1  A: 

A little more abstractly, you can often use the Accessibility Inspector, which is one of the Developer Tools, for the same purposes. Its intended purpose is for testing your app's accessibility to disabled users, who may be using screen readers (such as VoiceOver) or other assistive software or hardware.

Of course, it won't be able to see into your custom views (if you have any) unless you've made them accessible.

Peter Hosey