views:

59

answers:

1

Is there any tool to log current observers of a given object, in the spirit of what "gdb info gc-roots" does? I found "gdb info gc-references" could do that (sort of) as a by-product of its original purpose, but that won't work with non garbage collected apps. Thanks!

A: 

Maybe have a look at the F-Script Object Browser. http://www.fscript.org/

It allows you to inspect your objects (not only views) at runtime and display the it's property and binding information.

Robert