vote up 0 vote down star

when i make my textfield become first responder, the text field never returns nil, even if i force it to be nil by myTextField.text = nil; as soon as i comment out the "[myTextField becomeFirstResponder];" the text field is able to return nil. anybody have any idea why?

flag

1 Answer

vote up 0 vote down check

Becoming first responder initializes the internal NSString that holds the text you type to an empty string: @"", thus no longer nil. Being firstResponder is a persistent action, in order to always have a valid NSString in there when the user begins to type.

link|flag
so if i wanted to get the default value of the text field once the it becomes first responder, would it just be literally: @""? – nathanjosiah Nov 5 at 23:05
Yes, I believe so. – luvieere Nov 5 at 23:05
i found an alternate way that works for me, i just use if([myTextField.text length] <= 0]){ [self doStuff]; } – nathanjosiah Nov 5 at 23:13
thank you for the answer :) – nathanjosiah Nov 5 at 23:13
What value do you expect to get and how do you test for it: put your if statement in the question. – luvieere Nov 5 at 23:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.