Estou tentando verificar quando um campo de texto é alterado, equivalente também à função usada para textView - textViewDidChange
até agora, fiz isso:
func textFieldDidBeginEditing(textField: UITextField) {
if self.status.text == "" && self.username.text == "" {
self.topRightButton.enabled = false
} else {
self.topRightButton.enabled = true
}
}
Que tipo de trabalho, mas topRightButton
está ativado assim que o campo de texto é pressionado, desejo que seja ativado apenas quando o texto é realmente digitado?