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?
|
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
and
What am I missing? |
||||
|
|
|
||||
|
found this at apple discussions when searching for the same thing,thought ill post it here too. check the length of the string :
or optionally trim whitespaces from it before validation,so user cannot enter spaces instead.works well for usernames.
|
|||
|
Try following code textField.text is a string value so we are checking it like this
|
||||
|
|
|
Use for text field validation:
|
||||
|
|
|
Actually, I ran into slight problems using Raphael's approach with multiple text fields. Here's what I came up with:
|
||||
|
|