Is there a way to determine if a user has selected a textfield and its active? I'm trying to implement some code this:
if(textFieldsomething.isActive)
{
}
An object that displays an editable text area in your interface.
You can check to see if the text field is editing:
if (textFieldSomething.isEditing) {
...
}
See the UITextField class reference for details.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With