For example, for some reason in initWithNibName:bundle:
I can't see the value of self.view.bounds.size.width
, have to stop the program and use NSLog.
When I type self.view.bounds.size.width
into the watch, I get "Enter expression" message on the right.
When I type print self.view.bounds.size.width
into the debug console, I get the following errors:
error: unsupported expression with unknown type
error: 1 errors parsing expression
Is there any way to see ALL the values I can see using NSLog?
EDIT: By @Abizern's suggestion tried p self.view.bounds.size.width
and po self.view.bounds.size.width
- same result.