I'm debugging some code and finding it difficult to see & track the values being entered by the iPhone's keyboard into a UITextField (and from the UIDatePicker.)
I would expect Arguments>self>textField>_text to reflect the value that was entered into the textField but it isn't. It show's a different value ($0.00 instead of $1.25 for instance). When I write the value out via NSLog(@"textField.text:%@", textField.text); it shows the correct $1.25 value. What gives?
I wonder if this might be related to the fact that the UITextField is still first responder and this code I'm debugging is in a "Save" button that is pressed immediately after entering data in said UITextField?!? If so, question remains, where is that data stored and how can I debug it? I have similar trouble with a UIDatePicker used in a similar situation to modify a UITextField's value.
Thanks!