Suppose I select a UIView from the "debug view hierarchy" in the Xcode debugger. I can print its description; it looks something like this:
Printing description of $17:
<MyView: 0x7fc6a451c030; frame = (0 0; 375 270); layer = <CALayer: 0x608000029700>>
That's nice, but what I really want to do is call [myView myMethod] and print the result. In this particular case, myMethod returns an NSString, but I imagine that won't always be true.
I've read Calling methods from Xcode Debugger?, but it does not appear to help for my case, because myView is not self.