Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a GUI tool that inspects the view hierarchy of an iOS app? I'm thinking about Webkit's web inspector or similar tools. I'm looking to debug layout issues, like views having the wrong position or size, or a child not being properly contained in its parent. Currently I have to add asserts that test these various conditions by hand, or set different background colors on different views, and as you can imagine, that's a really tedious way to go about it.

I looked at Instruments's UI recorder, but that only records and plays back UI actions and, in any case, works only for Mac apps.

Is there a better solution?

share|improve this question

4 Answers

up vote 47 down vote accepted

I don't know if there is a GUI view inspection tool, but I have had some luck with the debugging method on UIView: -recursiveDescription

if you pause the program in the debugger and input this into GDB (Edit: also works in LLDB)

po [[UIWindow keyWindow] recursiveDescription]

You get a printout of your entire view hierarchy. You can also call it on a specific view to get a printout of the view hierarchy of that view.

It can be a little tedious to wade through the info you get out of it, but it has proved useful to me.

Credit goes to this blog post which talked about this method and also linked to this helpful, but rather hard to find Apple tech note.

share|improve this answer
I've got: error: cannot find interface declaration for '$__lldb_objc_class' any ideas? (lldb) po [[UIWindow keyWindow] recursiveDescription] error: cannot find interface declaration for '$__lldb_objc_class' error: cannot find interface declaration for '$__lldb_objc_class' error: 2 errors parsing expression – Zennichimaro Apr 19 at 3:34

This question is old but let me put info here about new tool which I develop: https://github.com/glock45/iOS-Hierarchy-Viewer enter image description here

share|improve this answer
This looks top notch, nice work. – Dima Aug 13 '12 at 20:44
Awesome tool for debugging UIView related bugs! – Philip007 Nov 28 '12 at 18:13

enter image description here

Just to keep this thread up to date, I've been recently playing with Spark Inspector. It's not free, but it's very nice.

share|improve this answer

I was told of spytouch, but that is for MonoTouch. I'm trying to find a GUI as well, but there doesn't seem to be one around.

A bit ironic that there's one for monotouch but not for native mac.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.