Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the value of a UITextField when it is empty? I can't seem to get this right.

I've tried (where `phraseBox' it the name of the said UITextField

if(phraseBox.text != @""){

and

if(phraseBox.text != nil){

What am I missing?

share|improve this question

5 Answers

up vote 13 down vote accepted
// Check to see if it's blank
if([phraseBox.text isEqualToString:@""]) {
  // There's no text in the box.
}

// Check to see if it's NOT blank
if(![phraseBox.text isEqualToString:@""]) {
  // There's text in the box.
}
share|improve this answer
Gotta wait 15 minutes to accept according to SO rules. I have 13 more min to test this, hehe ... – Moshe Jun 8 '10 at 23:24
Thanks for the edit. I figured out that part, with the !. – Moshe Jun 8 '10 at 23:26

found this at apple discussions when searching for the same thing,thought ill post it here too. check the length of the string :

NSString *value = textField.text;
if([[value length]] == 0) {

}

or optionally trim whitespaces from it before validation,so user cannot enter spaces instead.works well for usernames.

NSString *value = [textField.text stringByTrimmingCharactersInSet:[[NSCharacterSet    whitespaceCharacterSet]]];

if([[value length]] == 0) {
// Alert the user they forgot something
}
share|improve this answer
This the solution in Apple sample code's also. Thanks – carbonr Apr 13 '12 at 21:57
Surely you don't need so many brackets :) – Jack Apr 10 at 23:24

Try following code

textField.text is a string value so we are checking it like this

if([txtPhraseBox.text isEqualToString:@""])

{

// There's no text in the box.

}

else

{

NSLog(@"Text Field Text == : %@ ",txtPhraseBox.text);

}
share|improve this answer

Use for text field validation:

-(BOOL)validation{
 if ([emailtextfield.text length] <= 0) {
  [UIAlertView showAlertViewWithTitle:AlertTitle message:AlertWhenemailblank];
  return NO; }  
 return YES;}
share|improve this answer

Actually, I ran into slight problems using Raphael's approach with multiple text fields. Here's what I came up with:

if ((usernameTextField.text.length > 0) && (passwordTextField.text.length > 0)) {
    loginButton.enabled = YES;
} else {
    loginButton.enabled = NO;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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