When the debugger is stopped at a breakpoint, I can\'t find the frame of any of my UIViews in there.
Is it possible to do this?
EDIT: starting a bounty due to th
If you go to the debugger panel, you can type this in while you are at a breakpoint:
(gdb) print (CGRect) [self frame]
$1 = {
origin = {
x = 0,
y = 0
},
size = {
width = 100,
height = 100
}
}
When using the console debugger you can press the up arrow key to cycle through previous commands. Pressing return without entering a command repeats the last command.