In debug mode, how can I see the text property of the UITextField?

I'm stepping through the code in UITextField

, but I can't see where it shows what the text is currently (it should be @"hi"

). Where can I find this value?

enter image description here

+3


source to share


1 answer


try this: (in the console where there are debug messages) Enter this: po textField.text



+1


source







All Articles