Hello there - I am trying to understand how to accomplish some basic debugging stuff with gdb
I want to check the length of this control (UILabel) if I type the following in the console I get nothing, what's the proper way to do it?
(gdb) po self.mylabel.frame.size.width
There is no member named frame.
or if I try without self:
(gdb) po mylabel.frame.size.width
There is no member named frame.
There must be a way, not obvious for sure. Visual Studio has such a fantastic debugger helpers in tracking the values of objects and co...