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
Interestingly, using the getter method to return the view's frame works:
print (CGRect)[view frame]
This gives the expected result:
(CGRect) $2 = origin=(x=0, y=20) size=(width=320, height=48)
But if you try to use dot notation, which I hear so often referred to as being provided simply for 'syntactic sugar':
print (CGRect)view.frame
You get the following error:
error: C-style cast from '' to 'CGRect' is not allowed