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
Re-formatting @EPage_Ed's answer because the original was hard-coded for his specific case:
At the (lldb) prompt, type:
print (CGRect)[view frame]
Or, for the bounds:
print (CGRect)[view bounds]