텍스트 필드가 변경되는 시점을 확인하려고하는데 textView에 사용 된 기능과 동일합니다. textViewDidChange
지금 까지이 작업을 수행했습니다.
func textFieldDidBeginEditing(textField: UITextField) {
if self.status.text == "" && self.username.text == "" {
self.topRightButton.enabled = false
} else {
self.topRightButton.enabled = true
}
}
어떤 종류의 작품이지만 topRightButton
텍스트 필드를 누르 자마자 활성화되어 있습니까? 텍스트를 실제로 입력 할 때만 활성화하고 싶습니다.