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
Sometimes they are just out of scope by the time you get there.
Print them to the console:
NSLog('Frame: %d, %d, %d, %d', frame.origin.x, frame.origin.y, frame.size.width, frame.size.height);