Suppose I have some code including the following:
UIView *myView = [[UIView alloc] initWithFrame:myFrame];
[self.view addSubView:myView];
And I step through the code in the debugger until I get to the next line after this code. On the left side of the debugger window is a list of object that I can inspect, and myView is listed there. However, I don’t see where details of the frame, or the myView.center coordinates are located. Can I not inspect these properties through the object hierarchy I just described? If not, how can I inquire what the values are without using NSLog?
try the debugger command
poExample output: