To know if an UITextView is empty I used the following code:

if ( [ [textField text] isEqualToString:@""] )

But unfortunately it somehow fails to tell if the text field is empty.

What are the other ways?

When [textField text] is empty, it equals to nil.

Thank you.

link|improve this question

Can you be a bit more specific? It always returns false? – Ben Alpert Apr 18 '09 at 16:40
No, sometimes [textField text] equals to nil. Why is that? – Ilya Apr 18 '09 at 16:41
feedback

2 Answers

up vote 4 down vote accepted

Perhaps try [[textField text] length] == 0?

link|improve this answer
Thank you, this works for me. – Ilya Apr 18 '09 at 16:44
1  
This works even if [textField text] is nil, since in Objective-C you always get 0 returned from a nil object. – Chris Lundie Apr 18 '09 at 18:38
feedback
[textField hasText]

See reference.

link|improve this answer
What you are pointing me to is UITextView. And UITextField doesn't have this method. Unfortunately. – Ilya Apr 18 '09 at 16:43
I already wondered why you named your variable textField while referencing to UITextView in the question title. – Koraktor Apr 18 '09 at 16:50
feedback

Your Answer

 
or
required, but never shown

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