Re: Little problem with NSFormatter way of working
Re: Little problem with NSFormatter way of working
- Subject: Re: Little problem with NSFormatter way of working
- From: "Erik M. Buck" <email@hidden>
- Date: Mon, 15 Oct 2001 09:24:55 -0500
Whenever your disable a textField during active editing (return has not been
pressed), change the first responder in order to end the editing of the
textField. The textField's value is not really set until editing ends.
in whatever code disables the text field, add the following:
[[textField window] makeFirstResponder:[textField window] ]; // ends
editing in any fields
----- Original Message -----