vote up 1 vote down star
1

Sorry for the simple question but I feel like there's a smarter way to do this:

if ([txtFldTo.text length]>0){ 
    //do something
}
else {
    //do something else
}

where txtFldTo is an IBOutlet UITextField connected to a text field on the interface.

flag

74% accept rate

2 Answers

vote up 3 vote down check

Something like this should suffice.

if([[textfield text] length] > 0)

link|flag
That was my guess, I just thought there was a better way; e.g., !=@"", or or simply not textfield.text. – Greg Jan 15 '09 at 5:17
vote up 3 vote down

You're doing it right.

link|flag

Your Answer

Get an OpenID
or

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