How to view the value of a property in the debugger

I have a UIViewController and want to see properties like myview.view.hidden. In another class, where I declare a UIViewController instance, I can assign and read a property through code, but would like to know the value at different points. In the debugger console, I cannot execute "po myview.view.hidden" or "p myview.view.hidden". Is there any other way to do this?

0


a source to share


1 answer


po [[myview view] hidden]

      



+2


a source







All Articles