I'm having some problems with something related to UIResponder / UINavigationController / EAGLview combination. Is there a way for me to step thru / view the, display hierarchy?
Something like
*UIWindow*
*UIView*
*SOME SUBVIEWS*
*OTHERVIEW*
*SOME SUBVIEW*
*SOME OTHER SUBVIEW*
I know that I can check, [view subviews], and etc, but its very painful for me to try to figure out the current UIResponder-chain/display-hierarchy by sprinkling in a bunch of NSLogs in random places.
Is there some better way, maybe via the debugger? When I pause at a breakpoint, is it possible to just view the entire stack?