Things like this drive me crazy when debugging:
(lldb) p self.bounds error: unsupported expression with unknown type error: unsupported expression with unkno
You can access it by
p (CGRect)[view bounds]
or
p view.layer.bounds
view.bounds is actually view.layer.bounds
view.bounds
view.layer.bounds
It seems that the type info of [UIView bounds] is not available to lldb
[UIView bounds]
lldb